-
Notifications
You must be signed in to change notification settings - Fork 0
/
slides.css
123 lines (101 loc) · 1.73 KB
/
slides.css
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<style>
.container{
display: flex;
}
.col {
flex: 1;
}
.slides {
font-size: 0.75em;
}
.reveal ul {
display: block;
}
.reveal ol {
display: block;
}
img {
max-height: 600px !important;
}
figcaption {
font-size: 0.6em !important;
font-style: italic !important;
}
.subtitle {
font-style: italic !important;
}
.date {
font-size: 0.75em !important;
}
body {
font-family: "Arial", "sans-serif"
}
section {
margin: 0;
}
.reveal .slides {
margin: 0 1vmin;
}
.reveal h1,
.reveal h2,
.reveal h3,
.reveal h4 {
font-family: "Arial", "sans-serif";
text-transform: Uppercase;
color: #023d6b;
}
.reveal h1 {
color: #023d6b;
font-size: 250%;
}
.reveal h2 + h3 {
text-transform: Unset;
font-size: 80%;
}
.controls {
visibility: hidden;
}
.reveal .progress {
position: absolute;
bottom: 1px;
}
.prompt {
min-width: 0;
width: 0;
visibility: hidden;
}
div.dateauthor {
padding-top: 4em;
color: white;
}
div.prompt {
width:0;
}
div#footer {
position: fixed;
bottom: 0;
width: 100%;
z-index: 10;
font-size: 0.5em; font-weight: bold; padding: 0 1vmin; height: 20vmin; background: #fff}
#footer h1 {
position: absolute;
bottom: 3.2vmin;
display: block;
padding: 0 1em;
font-size: 1.7vmin;
font-weight: bold;
text-transform: unset;
color: #023d6b;
}
#footer h2 {display: block; padding: 0.em 1em 0;}
img.fzjlogo {
position: fixed;
bottom: 0;
right: 0;
height: 24vmin; /* The height of the svg is about 3 times the height of the logo */
margin-bottom: -3vmin; /* Baseline of logo should be about 5% of short side above edge. */
}
.rendered_html img, svg {
max-height: 440px;
}
</style>