summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
Diffstat (limited to 'static')
-rw-r--r--static/styles.css32
1 files changed, 32 insertions, 0 deletions
diff --git a/static/styles.css b/static/styles.css
index 0c48501..c7be672 100644
--- a/static/styles.css
+++ b/static/styles.css
@@ -548,6 +548,38 @@ h2 {
color: var(--accent);
}
+.ratings-row {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 10px;
+ margin: 16px 0 20px;
+}
+
+.rating-chip {
+ display: flex;
+ flex-direction: column;
+ gap: 3px;
+ border: 1px solid var(--line);
+ border-radius: 8px;
+ background: var(--panel);
+ padding: 10px 14px;
+ min-width: 90px;
+}
+
+.rating-chip-label {
+ color: var(--muted);
+ font-size: 0.72rem;
+ font-weight: 700;
+ text-transform: uppercase;
+ letter-spacing: 0.06em;
+}
+
+.rating-chip-value {
+ color: var(--text);
+ font-size: 1.05rem;
+ font-weight: 600;
+}
+
.detail-tagline {
margin: 0 0 12px;
color: var(--accent-strong);