forked from nzilbb/ws-data-processing
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustom.scss
More file actions
executable file
·79 lines (61 loc) · 1.44 KB
/
custom.scss
File metadata and controls
executable file
·79 lines (61 loc) · 1.44 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
78
79
/*-- scss:defaults --*/
$presentation-h1-font-size: 2em !default;
$theme-dark: #191818;
$theme-light: #F5F5F5;
$theme-blue: #98c0c5;
$theme-red: #ba5c3d;
$theme-green: #585C1F;
$body-bg: $theme-light;
$body-color: $theme-dark;
$link-color: $theme-green;
$code-block-font-size: 0.7em;
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Noto+Sans&display=swap');
@import url(https://fonts.bunny.net/css?family=merriweather-sans:700);
$font-family-sans-serif: 'Noto Sans', sans-serif;
$presentation-heading-font: 'Merriweather Sans', sans-serif;
/*-- scss:rules --*/
.reveal .slide blockquote {
border-left: 3px solid $text-muted;
padding-left: 0.5em;
}
.caption{
text-align: center;
}
.reveal .slide-logo {
height: 6rem !important;
width: 6rem !important;
max-width: unset !important;
max-height: unset !important;
}
.centre {
margin: 0;
position: absolute;
top: 50%;
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}
.big {
font-size: 1.5em;
}
.real-big {
font-size: 3em;
}
.blue {
color: $theme-blue;
font-weight: bold;
}
.red {
color: $theme-red;
font-weight: bold;
}
.green {
color: $theme-green;
font-weight: bold;
}
.backlight {
text-shadow: -2px 0 $theme-light,2px 0 $theme-light,0 -2px $theme-light,0 2px $theme-light;
}
.inverse-backlight {
color: $theme-light;
text-shadow: -2px 0 $theme-dark,2px 0 $theme-dark,0 -2px $theme-dark,0 2px $theme-dark;
}