-
Notifications
You must be signed in to change notification settings - Fork 3
/
slides.scss
51 lines (41 loc) · 990 Bytes
/
slides.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
/*-- scss:defaults --*/
// fonts
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@700&display=swap');
@import url('https://fonts.cdnfonts.com/css/brusher');
$font-family-sans-serif: "Atkinson Hyperlegible", sans-serif;
$presentation-title-slide-text-align: "left";
$presentation-font-size-root: 36px;
$presentation-title-slide-text-align: "left";
$code-block-font-size: 0.7em;
$link-color: #80a9d7;
$body-color: #22304e;
/*-- scss:rules --*/
details>summary {
font-size: 0.75em;
}
.smaller {
font-size: 0.5em;
}
.small {
font-size: 0.75em;
}
.larger {
font-size: 1.5em;
}
.largest {
font-size: 3em;
}
.reveal pre {
overflow-x: auto;
}
.reveal pre code {
word-wrap: normal;
white-space: pre;
background-color: #22304e;
color: white;
}
.code-with-filename .code-with-filename-file pre {
margin-bottom: 0;
background-color: #E2E2E2;
}