-
Notifications
You must be signed in to change notification settings - Fork 8
/
style.scss
91 lines (73 loc) · 1.92 KB
/
style.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
/*-- scss:defaults --*/
// fonts
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
// color
$theme-green: #023B2C;
$theme-blue: #335C67;
$theme-gold: #FCB040;
$theme-cream: #f2f0e6;
// font family
$presentation-heading-font: 'Lato', sans-serif !default;
$font-family-sans-serif: 'Poppins', sans-serif !default;
$font-family-monospace: 'Source Code Pro', monospace !default;
// font size
$presentation-heading-font-weight: 800;
$presentation-h1-font-size: 2.2em;
$presentation-h2-font-size: 1.7em;
$presentation-h3-font-size: 1.4em;
$presentation-h4-font-size: 1.1em;
$presentation-font-size-root: 40px;
$presentation-line-height: 1.5em;
// font color
$presentation-heading-color: $theme-green;
// code
$code-block-font-size: 0.8em;
$code-block-border-color: $theme-green;
// bg colours
$body-color: darken( $theme-green, 15% );
$link-color: $theme-blue;
$link-color-hover: darken( $link-color, 15% );
$body-bg: $theme-cream;
/*-- scss:rules --*/
section.has-dark-background a, section.has-dark-background a:hover {
color: $body-bg;
}
figure>figcaption {
font-size: 1em;
line-height: 1em;
}
details>summary {
color: $theme-blue;
}
.reveal pre.sourceCode code {
max-height: 650px;
overflow: auto;
}
.reveal code {
color: lighten( $theme-green, 7% );
background-color: rgba(0,0,0,0);
white-space: pre-wrap;
}
.reveal .footer {
color: $theme-blue;
font-family: $font-family-sans-serif;
font-size: 0.1em;
}
.reveal .slide-menu-button {
color: $theme-blue;
}
.reveal .slide-number {
color: $theme-blue;
}
.fas, .fa-solid {
font-family: 'Font Awesome 6 Free';
font-weight: 900;
color: $theme-blue;
}
.fab, .fa-brands {
font-family: 'Font Awesome 6 Brands';
font-weight: 400;
color: $theme-blue;
}