-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.scss
83 lines (67 loc) · 1.46 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
/*-- scss:defaults --*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700;900&display=swap');
$presentation-title-slide-text-align: left;
// fonts
$font-family-sans-serif: "Roboto", "Book Antiqua", Palatino,
FreeSerif, serif !default;
// colors
$body-bg: #ffffff !default;
$body-color: #191717 !default;
$link-color: #a60000 !default;
// headings
$presentation-heading-font: "Palatino Linotype", "Book Antiqua", Palatino,
FreeSerif, serif !default;
$presentation-heading-color: #1a1b1b !default;
$presentation-line-height: 1.3 !default;
$presentation-heading-line-height: 1.3 !default;
/*-- scss:rules --*/
.question {
color: #AD5769;
font-weight: bold;
}
.task {
color: #4d6749;
font-weight: bold;
}
.highlight {
color: #579dad;
font-weight: bold;
}
.errors {
color: #e3a14a;
font-weight: bold;
}
.white {
color: #ffffff;
}
.picture {
margin: auto;
padding: 10pt;
width: auto;
}
.reveal a {
line-height: 1.8em;
}
.reveal .title {
background-color: #FFE0D3;
}
.flow {
background-image: url(https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7);
background-attachment: fixed;
-webkit-text-fill-color: transparent;
-webkit-background-clip: text;
background-clip: text;
animation: animate 40s linear infinite;
font-weight: 900;
}
@keyframes animate {
0% {
background-position: left 700px top 100px;
}
40% {
background-position: left 700px top 500px;
}
}
.reveal table {
font-size: smaller;
}