-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.scss
129 lines (106 loc) · 1.84 KB
/
styles.scss
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
:root {
--color-muted: rgba(255, 255, 255, 0.33);
--color-strong: rgba(255, 255, 255, 1);
--color-accent: #ff0050
}
.remark-container {
background-color: black;
font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}
.remark-slide-scaler {
box-shadow: none;
}
.remark-slide-content {
background-color: #000;
color: rgba(255, 255, 255, 0.9);
font-size: 4vh;
padding: 0;
display: flex;
flex-flow: column nowrap;
justify-content: center;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
@media print {
padding: 1rem;
}
& > *:first-child {
margin-top: 0;
}
& > *:last-child {
margin-bottom: 0;
}
strong, b {
color: var(--color-accent);
}
.remark-code {
padding: 0;
background: transparent;
}
.remark-code, .remark-inline-code {
font-family: "JetBrains Mono", "IBM Plex Mono", monospace;
font-size: 3.5vh;
}
.remark-slide-number {
font-size: 2vh;
}
h1,
h2,
h3,
h4,
a:link,
a:visited {
color: var(--color-accent);
line-height: 2ex;
margin-bottom: 0;
margin-top: 1ex;
strong, b {
font-weight: 800;
}
}
h1 {
font-weight: 100;
font-size: calc(100vh / 5);
}
h2 {
font-weight: 200;
font-size: calc(100vh / 10);
}
h3 {
font-weight: 300;
font-size: calc(100vh / 15);
}
h4 {
font-weight: 400;
font-size: calc(100vh / 20);
}
h1 + h2,
h2 + h3,
h3 + h4 {
margin-top: 0;
}
table {
border-collapse: collapse;
width: 100%;
}
tbody tr {
border-bottom: 1px solid var(--color-muted);
}
thead tr {
border-bottom: 1px solid var(--color-strong);
}
td,
th {
padding: 0.5ex 0.5em;
}
td:first-of-type,
th:first-of-type {
padding-left: 0;
}
td:last-of-type,
th:first-of-type {
padding-right: 0;
}
}