-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
130 lines (112 loc) · 2.01 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
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
130
:root {
--grenadier: #e93c55;
--gren-rgba: #ee6a7d;
}
html, body {
color: #040101;
}
p, li {
font-size: 28px;
line-height: 1.5;
}
.center h1, .center h2, .center h3 {
line-height: 1.5;
}
h1 {
margin-bottom: 1em;
}
code {
background-color: var(--gren-rgba);
border-radius: 4px;
padding: .2em;
font-size: 0.9em;
}
blockquote {
display: inline-block;
margin: 0;
padding: .1rem 1rem;
font-style: italic;
color: white;
background-color: var(--gren-rgba);
}
a,
a:visited {
text-decoration: none;
background-image: linear-gradient(to top,
transparent 8%,
var(--grenadier) 9%,
var(--grenadier) 15%,
transparent 6%);
color: inherit;
}
a:hover,
a:focus,
a:active {
background-image: linear-gradient(to top,
transparent 8%,
var(--grenadier) 9%,
var(--grenadier) 90%,
transparent 91%);
}
.remark-code {
max-height: 400px;
overflow: scroll
}
.small {
font-size: 0.5em;
}
.title {
font-size: 2em;
margin-bottom: 0;
background-color: var(--grenadier);
color: white;
}
.subtitle {
background-color: var(--grenadier);
color: white;
}
h1 + h1 {
margin-top: -1em;
}
.flex {
display: flex;
justify-content: space-evenly;
align-items: center;
}
.flex-helper {}
.p-right {
text-align: right;
float: right;
}
.contain {
background-size: contain !important;
}
.no-bullets ul {
padding: 0;
}
.no-bullets li {
list-style: none;
margin: 0;
}
.one-p p + p {
margin-top: -1em;
}
.invert {
background-color: var(--grenadier);
}
.invert h1 {
color: white;
}
.interm h1 {
display: inline;
color: white;
background-color: var(--grenadier);
}
.bg-right {
background-size: contain;
background-position: right;
}
.speaker-shot {
background-size: 60%;
background-position: right bottom;
}