-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhevs.scss
More file actions
77 lines (64 loc) · 1.71 KB
/
hevs.scss
File metadata and controls
77 lines (64 loc) · 1.71 KB
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
/* reveal.scss - Custom Reveal.js theme for Quarto */
/*-- scss:rules --*/
@import url('https://fonts.googleapis.com/css?family=Inter:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Barlow:400,700&display=swap');
// Color palette
$color-dark-grey: #222222;
$color-blue: #ddeaf1;
$color-background: #ffffff;
$color-foreground: $color-dark-grey;
$color-primary: #000000;
// Logo (for reference, actual logo placement is handled in Quarto YAML)
$logo-medium: "img/hesso.svg";
// Typography
$font-base: 'Barlow', sans-serif;
$font-headings: 'Inter', sans-serif;
// Reveal.js overrides
.reveal {
background-color: $color-background;
color: $color-foreground;
font-family: $font-base;
}
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4,
.reveal h5,
.reveal h6 {
font-family: $font-headings;
color: $color-primary;
}
.reveal a {
color: $color-blue;
text-decoration: underline;
}
.reveal .slide-background {
background-color: $color-background !important;
}
.reveal .logo {
background-image: url(#{$logo-medium});
background-size: contain;
background-repeat: no-repeat;
width: 120px;
height: 60px;
display: block;
margin: 0 auto 1em auto;
}
// Optional: style code blocks
.reveal pre, .reveal code {
background: #f5f5f5;
color: $color-dark-grey;
font-family: 'Fira Mono', 'Consolas', monospace;
}
.reveal .slide-menu-button a {
color: $color-dark-grey
}
.title {
font-size: 3rem !important;
font-weight: 700;
background: #009efa;
background: linear-gradient(90deg, rgba(0, 158, 250, 1) 0%, rgba(108, 199, 87, 1) 73%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}