-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-theme.css
More file actions
59 lines (51 loc) · 854 Bytes
/
example-theme.css
File metadata and controls
59 lines (51 loc) · 854 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
* {
font-family: sans-serif;
}
body.slide-body {
background-color: black;
overflow: clip;
width: 1920px;
}
.slide {
width: 1920px;
height: 1080px;
overflow: clip;
}
.lyrics {
text-align: center;
font-size: 60pt;
margin-top: 1rem;
margin-bottom: auto;
margin-inline: 4rem;
color: white;
text-shadow: 2px 2px 6px #000000;
}
.subtitle {
color: white;
align-self: center;
font-size: 50pt;
margin-bottom: 1rem;
margin-top: auto;
text-shadow: 2px 2px 6px #000000;
}
.fit-image-height {
display: flex;
}
.fit-image-height img {
width: auto;
height: 100vh;
max-height: 100%;
margin-inline: auto;
}
.annotation {
font-size: 30pt;
color: white;
text-align: right;
margin-right: 2rem;
margin-bottom: 1rem;
margin-top: auto;
text-shadow: 2px 2px 6px #000000;
}
.audio video {
display: none;
}