-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (96 loc) · 2.66 KB
/
style.css
File metadata and controls
111 lines (96 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* Brand tokens — edit these, everything downstream uses them */
:root {
--brand-ink: #0f172a; /* primary text / dark surfaces */
--brand-ink-strong: #334155; /* secondary emphasis — between ink and muted */
--brand-paper: #ffffff; /* light surfaces */
--brand-muted: #64748b; /* secondary text */
--brand-muted-strong: #475569; /* darker muted — between muted and ink-strong */
--brand-accent: #f97316; /* headlines, primary emphasis */
--brand-accent-2: #0891b2; /* secondary accent — numbers, eyebrow labels */
--brand-accent-soft: #fed7aa; /* highlight washes */
--brand-rule: #e2e8f0; /* dividers */
--font-display: "Inter Tight", "Inter", system-ui, sans-serif;
--font-body: "Inter", system-ui, sans-serif;
--font-mono: "JetBrains Mono", ui-monospace, monospace;
}
/* Global slide styles */
.slidev-layout {
font-family: var(--font-body);
color: var(--brand-ink);
}
.slidev-layout h1,
.slidev-layout h2 {
font-family: var(--font-display);
letter-spacing: -0.02em;
font-weight: 700;
}
.slidev-layout h1 {
color: var(--brand-ink);
}
.slidev-layout h1 em,
.slidev-layout h2 em {
color: var(--brand-accent);
font-style: normal;
}
/* Accent rule you can use anywhere */
.accent-rule {
width: 3rem;
height: 4px;
background: var(--brand-accent);
border: 0;
margin: 1.5rem 0;
}
/* Subdued body text utility */
.muted {
color: var(--brand-muted);
}
/* Full-bleed dark slide */
.slidev-layout.dark-slide {
background: var(--brand-ink);
color: var(--brand-paper);
}
.slidev-layout.dark-slide h1,
.slidev-layout.dark-slide h2 {
color: var(--brand-paper);
}
/* Eyebrow — small-caps mono label above a headline */
.eyebrow {
font-family: var(--font-mono);
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.18em;
color: var(--brand-accent-2);
margin-bottom: 1rem;
}
/* Big-bullets — oversized dashed bullets for scannable list slides */
.slidev-layout ul.big-bullets {
list-style: none;
padding: 0;
}
.slidev-layout ul.big-bullets > li {
font-size: 1.4rem;
padding: 0.5rem 0 0.5rem 1.75rem;
position: relative;
line-height: 1.4;
color: var(--brand-ink-strong);
}
.slidev-layout ul.big-bullets > li::before {
content: "—";
position: absolute;
left: 0;
color: var(--brand-accent);
font-weight: 700;
}
.slidev-layout ul.big-bullets > li strong {
color: var(--brand-ink);
}
/* Byline — centered mono small-caps, for title and closing slide taglines */
.byline {
font-family: var(--font-mono);
font-size: 0.85rem;
text-transform: uppercase;
letter-spacing: 0.18em;
color: var(--brand-muted-strong);
line-height: 2;
text-align: center;
}