Newer
Older
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
<style>
@import url("https://fonts.googleapis.com/css?family=Nanum+Gothic");
:root {
--font-family: "Nanum Gothic";
--font-size: 0.8em;
}
.reveal {
font-family: var(--font-family), sans-serif;
}
.reveal a {
color: #34A2EC;
font-family: var(--font-family), sans-serif;
}
.reveal p {
font-size: var(--font-size);
}
.reveal ul {
font-size: var(--font-size);
}
.reveal h1 {
font-size: 2.5em;
font-family: var(--font-family), sans-serif;
text-shadow: 4px 4px 4px #aaa;
}
.reveal h2 {
font-size: 1.75em;
font-family: var(--font-family), sans-serif;
}
</style>