-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathslides.css
More file actions
64 lines (51 loc) · 771 Bytes
/
slides.css
File metadata and controls
64 lines (51 loc) · 771 Bytes
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
/*Custom CSS classes for slides*/
.midsize{
font-size: 1.2em;
}
.centered_midsized {
font-size: 1.2em;
text-align: center;
}
.centered_large {
font-size: 2.0em;
text-align: center;
}
.red {
color: red;
}
.blue{
color: blue;
}
.bold{
font-weight: bold;
}
.red-bold{
color: red;
font-weight: bold;
}
.blue-bold{
color: blue;
font-weight: bold;
}
.green-bold{
color: green;
font-weight: bold;
}
section.level2 > h1 {
font-size: 200%;
}
section.level1 > h1 {
font-size: 200%;
}
section {
display: flex !important;
flex-direction: column;
top: unset !important;
height: 100vh;
}
.v-center-container {
display: flex;
justify-content: center;
align-items: center;
height: 90%;
}