forked from fghaas/presentation-template
-
Notifications
You must be signed in to change notification settings - Fork 31
/
reveal-override.scss
102 lines (84 loc) · 2.01 KB
/
reveal-override.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
91
92
93
94
95
96
97
98
99
100
101
102
@import '_fonts';
@import '_variables';
@import '_mixins';
@import '_suse-colors';
.reveal {
h1, h2, h3, h4, h5, h6, div, p, span, ul, ol, pre, th, td {
font-family: "Poppins", Verdana, Arial, sans-serif;
font-style: normal;
}
tt, code, code * {
font-family: "Roboto mono", Courier, monospace;
}
@import '_slides';
.overlay-help .viewport {
th, td {
color: $jungle;
}
}
/* Blow iframe up to full screen size */
iframe {
height: 90%;
width: 100%;
margin: 2%;
}
.progress {
color: $persimon;
}
.controls {
color: $pine;
div.navigate-up, div.navigate-up.enabled {
border-bottom-color: black
}
div.navigate-down, div.navigate-down.enabled {
border-top-color: black
}
div.navigate-left, div.navigate-left.enabled {
border-right-color: black
}
div.navigate-right, div.navigate-right.enabled {
border-left-color: black
}
}
.stamp {
position: absolute;
color: red !important;
font-size: 6em !important;
font-family: "Special Elite" !important;
transform: rotate(-45deg);
position:absolute;
left:50%;
top:50%;
margin-left:-20vw;
margin-top:-10vh;
text-shadow: none;
}
.slide-menu {
.slide-menu-item {
padding-top: 5px;
padding-bottom: 0px;
margin-bottom: 2px;
}
.slide-menu-item-vertical {
padding-top: 4px;
padding-bottom: 2px;
}
}
}
@media print {
.reveal {
h1, h2, h3, h4, h5, h6 {
color: black;
}
}
}
// Styles specific to individual master page templates go in separate files:
@import '_qrcode';
@import '_cover-page';
@import '_normal-slide';
@import '_blank-slide';
@import '_per-page';
@import '_toc';
@import '_contact';
@import '_divider';
@import '_thanks';