-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.scss
79 lines (65 loc) · 1.65 KB
/
custom.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
/*-- scss:defaults --*/
// fonts
$font-family-sans-serif: 'Atkinson Hyperlegible', Lato, sans-serif !default;
//https://coolors.co/0081af-363636-fdf6e3-ffb12d-618b4a
/* SCSS HEX */
$cerulean: #0081afff;
$jet-dark: #363636ff;
$cosmic-latte: #fdf6e3ff;
$orange-biome: #ffb12dff;
$fern-green: #618b4aff;
// colors
$body-bg: $cosmic-latte !default;
$body-color: $jet-dark !default;
$link-color: $cerulean !default;
$code-color: $cerulean !default;
$selection-bg: $orange-biome !default;
$navbar-bg: $orange-biome !default;
// headings
$presentation-heading-font: 'Atkinson Hyperlegible', "League Gothic", sans-serif !default;
$presentation-heading-text-transform: uppercase !default;
$presentation-heading-color: $cerulean !default;
$presentation-title-slide-text-align: right !default;
$presentation-h1-font-size: 2em !default;
// code blocks
$code-block-border-color: $body-color !default;
/*-- scss:rules --*/
html * {
color-profile: sRGB;
rendering-intent: auto;
}
.reveal blockquote {
display:block;
position:relative;
color: $fern-green;
width:unset;
margin:var(--r-block-margin) auto;
padding:.625rem 1.75rem;
border-right:.25rem solid $fern-green;
border-left: none;
font-style:italic;
background: none;
box-shadow:none;
text-align: right;
}
.reveal .slide a, .reveal .footer a {
text-decoration: underline;
}
.reveal .citation a {
text-decoration: none;
}
/* CSS classes to highlight terms
src: https://www.emilhvitfeldt.com/post/slidecraft-colors-fonts/#using-css-classes
*/
.orange {
color: $orange-biome;
font-weight: bold;
}
.green {
color: $fern-green;
font-weight: bold;
}
.blue {
color: $cerulean;
font-weight: bold;
}