-
Notifications
You must be signed in to change notification settings - Fork 40
/
custom.scss
50 lines (41 loc) · 936 Bytes
/
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
/*-- scss:defaults --*/
$theme-darkblue: #085088;
$theme-blue: #3c8fbc;
$theme-white: #F2F2F2;
$theme-pink: #C567A3;
$theme-gray: #9BAEBC;
$theme-oldpink: #d1bcc8;
$theme-darkgrey: #20313a;
$body-bg: $theme-white;
$link-color: $theme-blue;
$body-color: $theme-darkgrey;
$presentation-heading-color: $theme-darkgrey;
@import url('https://fonts.googleapis.com/css?family=Lato:400,700');
$presentation-heading-font: 'Lato', serif;
$font-family-sans-serif: 'Lato', sans-serif;
.reveal .slide code {
color: $theme-darkblue;
}
.reveal h2 {
padding-bottom: 40px;
}
.reveal .slide ul {
list-style-type: square;
}
.reveal .slide ul li::marker {
color: $theme-blue;
}
.reveal .footer {
height: 10%;
max-height: 50px;
min-height: 20px;
bottom: 0px !important;
background-color: $theme-oldpink;
z-index: 1 !important;
}
.reveal .footer a {
color: $theme-white !important;
}
.reveal .footer p {
margin-top: 0.5em;
}