-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.css
51 lines (45 loc) · 914 Bytes
/
custom.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
/* TODO: figure out how inheritance works with the scss */
:root{
--vista-blue: #9ba2ffff;
--rose-quartz: #a499beff;
--beaver: #9e8576ff;
--coyote: #7a542eff;
--space-cadet: #2a2e45ff;
}
.tag {
background-color: black;
color: white;
font-size: 0.3em;
padding: 10px;
font-family: 'Roboto Condensed', sans-serif;
vertical-align: middle;
}
.fa-r-project {
color: #2069C0;
}
.fa-git {
color: #FB4E23;
}
details>summary {
color: var(--beaver);
font-size: x-large;
}
/*
Credits:
https://github.com/emitanaka/talks/blob/master/Toronto2022/assets/custom.css
*/
.circle {
border-radius: 50%;
width: 1em;
line-height: 1em;
padding: 3px;
display: inline-block;
background: black;
color: white;
text-align: center;
font-weight: bold;
font-family: 'Roboto Condensed', sans-serif;
}
.reveal .slide .reminder {
background-color: var(--rose-quartz);
}