-
Notifications
You must be signed in to change notification settings - Fork 0
/
custom.scss
41 lines (33 loc) · 948 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
/*-- scss:defaults --*/
// importing fonts
@import url('https://fonts.googleapis.com/css2?family=Inconsolata&family=Lato&family=Yanone+Kaffeesatz&display=swap');
// fonts
$font-family-sans-serif: 'Lato', Tahoma, sans-serif !default;
// headings
$presentation-heading-font: 'Yanone Kaffeesatz', Tahoma, sans-serif !default;
$presentation-heading-color: #562457 !default;
$h1-font-size: 1.6em !default;
$h2-font-size: 1.3em !default;
$h3-font-size: 1.15em !default;
//code
$code-color: #88398A !default;
$font-family-monospace: 'Inconsolata', monospace !default;
// general
$body-bg: #fff;
$body-color: #000000;
$link-color: #88398a;
$presentation-font-size-root: 35px;
/*-- scss:rules --*/
.reveal pre code {
background-color: #f8f8f8;
font-size: 1em;
padding: 0.5em;
line-height: 1.2em;
}
.subtitle {
color: $presentation-heading-color;
font-size: $h2-font-size;
}
.reveal .panel-tabset [role=tab] {
font-size: 0.8em;
}