-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles_html.scss
61 lines (46 loc) · 1.22 KB
/
styles_html.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
/*-- scss:defaults --*/
$presentation-title-slide-text-align: left;
// fonts from Google Fonts
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
// colors background
$background-color: #ffffff;
// theme colors
$theme-color-primary: #025259;
$theme-color-secondary: #F29325;
$theme-color-tertiary: #D94F04;
$theme-color-quaternary: #F4E2DE;
// fonts colors
$font-color: #000000;
$font-color-inverted: $background-color;
$font-color-loud: $theme-color-secondary;
// colors
$body-bg: $background-color;
$body-color: $font-color;
$link-color: $theme-color-tertiary;
// headings
$presentation-heading-font: "Palatino Linotype", "Book Antiqua", Palatino, FreeSerif, serif !default;
// line height
$presentation-line-height: 1.5 !default;
$presentation-heading-line-height: 1.5 !default;
/*-- scss:rules --*/
.reveal .title {
background-color: $theme-color-primary;
}
.title-slide.title {
background-color: $theme-color-quaternary !important;
}
.highlight {
color: $theme-color-primary;
font-weight: bold;
}
.task {
color: $theme-color-secondary;
font-weight: bold;
}
.question {
color: $theme-color-tertiary;
font-weight: bold;
}
.light {
color: $theme-color-quaternary;
}