-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
103 lines (103 loc) · 1.9 KB
/
styles.css
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
@import url(https://fonts.googleapis.com/css?family=Inter:200,600);
:root {
--fg: black;
--bg: white;
--em: #508CA4;
--shadow: #508CA430;
--font-weight: 600;
}
img {
max-width: 100%;
max-height: 90vh;
}
a {
color: var(--em);
text-decoration: none;
border-bottom: 1px solid var(--shadow);
border-radius: 1px;
transition: border-bottom-color 100ms;
}
a:focus,
a:hover {
border-bottom-color: var(--em);
}
kbd {
background: white;
color: black;
padding: 0 0.2em;
border-radius: 5px;
box-shadow: 0 0 4px rgba(0,0,0,0.5) inset;
}
.remark-notes-area {
background-color: var(--bg);
color: var(--fg);
border-left: 1px solid var(--fg);
font-family: sans-serif;
font-weight: 300;
font-size: 0.85em;
}
.remark-slide-content {
background-size: contain;
font-family: Inter,sans-serif;
font-size: calc(.85em + 2vw);
font-weight: var(--font-weight);
padding: 0;
text-align: center;
}
.remark-slide-content h1,
.remark-slide-content h2,
.remark-slide-content h3,
.remark-slide-content h4,
.remark-slide-content h5,
.remark-slide-content h6,
line-height: 1;
}
.remark-slide-content h1 {
font-size: 2em;
}
.remark-slide-content h2 {
font-size: 1.5em;
}
.remark-slide-content em {
font-style: normal;
color: var(--em);
}
.remark-slide-content > *:first-child {
margin-top: 0;
}
.remark-slide-number {
font-size: 0.3em;
display: none;
}
.small {
font-size: calc(.85em + 1.5vw);
}
.cramped {
letter-spacing: -0.13em;
}
.remark-code {
font-size: inherit;
}
@media screen {
body, body.remark-container {
background: var(--bg);
color: var(--fg);
}
.remark-slide-content {
background-color: var(--bg);
}
.remark-slide-scaler {
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
}
@media (prefers-color-scheme: dark) {
:root {
--fg: white;
--bg: black;
--em: #90CCE4;
--shadow: #364C55;
--font-weight: 600;
}
}