-
Notifications
You must be signed in to change notification settings - Fork 3
/
theme.scss
77 lines (57 loc) · 1.33 KB
/
theme.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
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
/*-- scss:defaults --*/
// fonts
@import 'https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible:wght@700&family=Gochi+Hand&display=swap';
@import 'https://fonts.googleapis.com/css2?family=Gochi+Hand&display=swap';
$font-family-sans-serif: "Atkinson Hyperlegible", sans-serif;
$code-block-font-size: 0.8em;
$code-color: #5f5f5f;
$link-color: #234d83;
$presentation-heading-color: #4e709b;
/*-- scss:rules --*/
/* title slide */
#title-slide {
text-align: right;
color: #404040;
.title {
color: #4e709b;
}
.subtitle a {
background-color: #F9EBAB;
}
.quarto-title-authors {
justify-content: right;
.quarto-title-author { // optional, test it for yourself
padding-left: 0;
padding-right: 0;
width: 100%;
}
}
}
/* colors */
.reveal h3 {
color: #008080;
font-family: Gochi Hand;
}
/* font sizes */
.medium {
font-size: 0.85em;
}
.small {
font-size: 0.75em;
}
/* custom divs */
.reveal .slide .question {
padding-right: 10px;
padding-left: 10px;
padding-top: 3px;
padding-bottom: 3px;
margin-bottom: 20px;
margin-top: 6px;
border-left: solid 5px #4e709b;
background-color: #4e709b50;
}
.reveal .slide .preslink {
background-color: #F9EBAB;
font-size: 1.5em;
}