-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcustom.scss
90 lines (70 loc) · 1.63 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
80
81
82
83
84
85
86
87
88
89
90
/*-- scss:ALA theme --*/
@import url(https://fonts.googleapis.com/css?family=Roboto:300,300i&display=swap);
@import url(https://fonts.googleapis.com/css?family=Lato&display=swap);
@import url(https://fonts.googleapis.com/css?family=Fira+Mono&display=swap);
// fonts
$font-family-sans-serif: "Roboto", Roboto, serif;
$font-family-monospace: "Fira Mono", Fira;
$code-block-font-size: 0.5em;
$credits-font-size: 0.45em;
// colors
$body-bg: #fff !default;
$body-color: #000 !default;
$link-color: #51483d !default;
$selection-bg: #26351c !default;
$code-color: #222322 !default;
$custom-color: #26351c;
$custom-color-ala: #B8573E;
$custom-link-color: #E06E53;
// headings
$presentation-heading-font: "Roboto", Roboto, serif;
$presentation-heading-color: #222322;
$header-font-size: 1.3em;
$slide-header-font-size: 1.5em;
/*-- scss:rules --*/
.reveal a {
line-height: 1.3em;
color: $custom-link-color;
}
.reveal h1 {
color: $custom-color;
font-size: $header-font-size !important;
}
.reveal h2 {
color: $custom-color;
font-size: $slide-header-font-size !important;
}
.clipped {
clip-path: circle();
}
.reveal .galah h1 {
color: $custom-color;
}
.reveal .galah h2 {
color: $custom-color;
}
.reveal .galah h1 code {
color: $custom-color;
}
.reveal .ala4r h1 {
color: $custom-color-ala;
}
.reveal .ala4r h2 {
color: $custom-color-ala;
}
.credits {
color: #fff;
font-size: $credits-font-size;
}
.reveal .slide aside, .reveal .slide div.aside {
position: absolute;
bottom: -30px;
font-size: 0.7em;
color: #4d4d4d;
}
.purple-title .reveal h2 {
color: #5D2E46;
}
.ack-img {
background-color: rgba(0, 0, 0, 0.5);
}