-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom_1.scss
79 lines (60 loc) · 1.21 KB
/
custom_1.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 --*/
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap');
$theme-red: #730409;
$theme-brown: #3A251C;
$theme-green: #39663F;
$theme-apricot: #EDA073;
$theme-apricot-light: #FDE6D9;
$theme-yellow: #EEC852;
$theme-white: #ECEDEB;
$body-bg: $theme-white;
$body-color: $theme-brown;
$link-color: $theme-green;
$code-color: #cc0000;
$code-block-bg: #E1E8EB;
$code-block-border-color: #000000;
$font-family-sans-serif: 'Roboto Slab', serif;
/*-- scss:rules --*/
.title-background {
background-color: #ECEDEBCC;
box-shadow: 10px yellow;
box-shadow: 0px 0px 40px #ECEDEBCC;
}
.reveal p, li {
font-weight: 100;
}
.reveal iframe {
pointer-events: none;
}
.announcement-start * {
font-size: 200px;
}
.announcement-end * {
font-size: 200px;
}
.fontsize40 {
font-size: 40px;
}
code span.fu {
color: darken($theme-apricot, 30%);
}
code span.at {
color: darken($theme-yellow, 30%);
}
code span.st {
color: $theme-green;
}
code span.dv {
color: $theme-red;
}
.reveal code {
color: darken($theme-apricot, 30%);
}
.red {
color: $theme-red;
font-weight: 300;
}
.green {
color: $theme-green;
font-weight: bold;
}