-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.scss
91 lines (73 loc) · 1.94 KB
/
styles.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 --*/
$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: #8C3048;
$theme-color-secondary: #023059;
$theme-color-tertiary: #BF7C63;
$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;
}
.invert-font {
color: $font-color-inverted;
background-color: #000000;
border-width: 10px;
border-radius: 0px;
border-color: #000000;
border-style: solid;
}
.loud-slide {
background-color: $theme-color-primary !important;
color: $font-color-loud !important;
font-weight: bold !important;
}
.flow {
background-image: url("https://images.unsplash.com/photo-1507608158173-1dcec673a2e5?auto=format&fit=crop&w=2000&q=80");
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
background-clip: text;
animation: animate 120s linear infinite;
background-size: cover;
background-repeat: repeat;
}
@keyframes animate {
0% {
background-position: left 192px top 108px;
}
100% {
background-position: left 1728px top 972px;
}
}