-
Notifications
You must be signed in to change notification settings - Fork 252
Expand file tree
/
Copy paththeme.css
More file actions
executable file
·45 lines (37 loc) · 818 Bytes
/
theme.css
File metadata and controls
executable file
·45 lines (37 loc) · 818 Bytes
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
@import url("style/theme.css");
@import url("style/components/index.css");
:root {
--font-mono: Consolas, Monaco, 'Andale Mono', monospace;
--font-sans: 'Helvetica Neue', Helvetica, Segoe UI, sans-serif;
}
.slide {
color-scheme: dark;
--background-color-overlay: hsl(200 20% 50% / 30%);
background: radial-gradient(transparent, rgb(0 0 0 / .7)), linear-gradient(var(--background-color-overlay) 0 100%) canvas;
h2 {
color: var(--color-accent-2);
font-size: 120%;
}
}
/* Tables */
.slide > table {
caption {
letter-spacing: -.05em;
color: var(--color-orange);
}
thead th {
background: var(--color-accent-1);
}
tbody tr > * {
border-top-color: hsla(0 0% 100% / 15%);
}
td:first-child {
font-weight: 300;
}
}
.slide figure {
figcaption {
margin-top: .5em;
text-align: center;
}
}