-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
58 lines (49 loc) · 1.18 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
/*-- scss:defaults --*/
// Fonts
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,400;0,700;1,400&display=swap');
$work-sans: 'Work Sans', sans-serif;
$font-family-sans-serif: $work-sans !default;
$presentation-font-size-root: 36px !default;
// Colors
$yellow: rgb(255, 200, 0);
$darkyellow: rgb(67, 64, 49);
$black: rgb(44, 50, 63);
$pastel: rgb(250, 242, 216);
$green: rgb(11, 69, 73);
$darkgreen: rgb(35, 55, 59);
$body-color: $pastel !default;
$presentation-heading-font-weight: bold !default;
$body-bg: $darkyellow !default;
$link-color: $yellow !default;
$code-block-bg: $darkgreen;
$code-color: $yellow;
/*-- scss:rules --*/
.reveal h1 {
color: $yellow;
font-family: $work-sans;
font-size: 115px;
text-shadow: 4px 5px 4px rgba($yellow, 0.4) !important;
}
.quarto-title-authors {
font-size: 32px;
}
.reveal h2 {
color: $pastel;
font-family: $work-sans;
font-size: 60px;
margin-bottom: 45px;
text-shadow: 3px 4px 3px rgba($yellow, 0.3) !important
}
.reveal h3 {
color: $pastel;
font-family: $work-sans;
}
.reveal .slide-logo {
max-height: 4rem !important;
}
.right {
text-align: right !important;
}
.center {
text-align: center !important;
}