-
Notifications
You must be signed in to change notification settings - Fork 0
/
theme_original.scss
84 lines (77 loc) · 2.02 KB
/
theme_original.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
/*-- scss:defaults --*/
@font-face {
font-family: 'Cabinet Grotesk';
src: url('fonts/CabinetGrotesk-Regular.ttf') format("truetype");
}
@font-face {
font-family: 'Cabinet Grotesk';
font-weight: bold;
src: url('fonts/CabinetGrotesk-Bold.ttf') format("truetype");
}
@font-face {
font-family: 'Cabinet Grotesk';
font-weight: 800;
src: url('fonts/CabinetGrotesk-ExtraBold.ttf') format("truetype");
}
@font-face {
font-family: 'Cabinet Grotesk';
font-weight: 900;
src: url('fonts/CabinetGrotesk-Black.ttf') format("truetype");
}
@font-face {
font-family: 'Boska';
font-weight: 800;
src: url('fonts/Boska-Black.ttf') format("truetype");
}
@font-face {
font-family: 'Tabular';
src: url('fonts/Tabular-Regular.otf') format("opentype");
}
@font-face {
font-family: 'Tabular';
font-weight: bold;
src: url('fonts/Tabular-Bold.otf') format("opentype");
}
@font-face {
font-family: 'Tabular';
font-style: italic;
src: url('fonts/Tabular-Italic.otf') format("opentype");
}
@font-face {
font-family: 'Tabular';
font-weight: bold;
font-style: italic;
src: url('fonts/Tabular-BoldItalic.otf') format("opentype");
}
$font-family-sans-serif: 'Cabinet Grotesk', 'Arial', sans-serif;
$font-family-serif: 'Boska', 'Bodoni MT', 'Georgia', 'Times New Roman', Times, serif;
$presentation-heading-color: #28A87D;
$presentation-heading-font-weight: 800;
$link-color: #28a87d;
$link-color-dark: #79dfbd;
$link-color-visited: #28A87D;
$link-color-hover: #28A87D;
$presentation-selection-background-color: #EDCBA0;
$presentation-title-slide-text-align: "left";
$presentation-block-margin: .0375rem;
/*-- scss:rules --*/
h1, .navbar-title {
font-weight: 800;
}
code, .code {
font-family: 'Tabular', 'Consolas', monospace;
}
.question {
border-left: 3px solid #28a87d;
padding: 0.5rem 0.5rem 0.2rem 1rem;
margin-top: 0.5rem;
margin-bottom: 0.3rem;
background: #d9f6ec;
}
.recap {
border-left: 3px solid #663399;
padding: 0.5rem 0.5rem 0.2rem 1rem;
margin-top: 0.5rem;
margin-bottom: 0.5rem;
background: #e6d9f2;
}