-
Notifications
You must be signed in to change notification settings - Fork 0
/
slides.scss
111 lines (88 loc) · 1.84 KB
/
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
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
/*-- scss:defaults --*/
// fonts
@import 'https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible&display=swap';
$font-family-sans-serif: "Atkinson Hyperlegible", sans-serif;
$body-bg: #343838;
$body-color: #FFFFFF;
$link-color: #C7B41D;
$presentation-font-size-root: 40px;
// headings
$h1-font-size: 1.6em !default;
$h2-font-size: 1.3em !default;
$h3-font-size: 1.15em !default;
/*-- scss:rules --*/
.small {
font-size: 0.75em;
}
.brshort {
line-height: 10px;
}
.reveal .slide .question {
border-left: 3px solid #7aa81e;
padding-left: 1.0em;
padding-top: 0.25em;
padding-bottom: 0.25em;
background: #97c71d;
}
.reveal .slide .poll {
border-left: 3px solid #FFD166;
padding-left: 0.5em;
padding-top: 0.25em;
padding-bottom: 0.25em;
background: #FFEDC2;
}
.reveal .slide .appex {
border-left: 3px solid #003559;
margin-top: 0.5em;
margin-bottom: 0.5em;
padding: 0.5em;
background: #EBF7FF;
}
.subtitle {
color: $link-color;
font-size: $h2-font-size;
font-family: $presentation-heading-font;
}
.author {
color: $link-color;
font-size: $h2-font-size;
font-family: $presentation-heading-font;
}
.footer {
color: $link-color;
font-family: $presentation-heading-font;
}
.reveal .slide-number {
color: $link-color;
font-family: $presentation-heading-font;
}
.reveal .panel-tabset [role=tab] {
font-size: 0.8em;
}
.reveal .footer {
color: $link-color;
}
.huge-primary {
font-family: $font-family-sans-serif;
font-size: 1500%;
font-weight: bold;
color: #FFFFFF;
}
.center-x{
text-align: center;
}
.black-code {
color: #000000;
font-family: $font-family-monospace;
font-size: 2em;
}
.black-code-smaller {
color: #000000;
font-family: $font-family-monospace;
font-size: 1.5em;
}
.black-code-smallest {
color: #000000;
font-family: $font-family-monospace;
font-size: 1em;
}