-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathstage.css
56 lines (48 loc) · 923 Bytes
/
stage.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
body {
padding: 6px;
overflow: hidden;
}
#content {
position: absolute;
bottom: 0;
left: 0;
display: flex;
width: 100%;
flex-flow: column nowrap;
}
#lyrics-container {
display: flex;
height: 500px;
width: 100%;
justify-content: center;
align-items: center;
position: relative;
}
.lyrics {
font-family: sans-serif;
font-size: 36pt;
color: white;
text-align: center;
background: rgba(0, 0, 0, 0.5);
padding: 16px;
position: absolute;
}
.lyrics:nth-child(2) {
opacity: 0;
z-index: -1;
}
.title-container {
display: flex;
justify-content: flex-start;
position: relative;
width: 100%;
height: auto;
padding: 16px;
}
.title {
width: fit-content;
font-size: 36pt;
color: white;
padding: 8px;
background: rgba(0, 0, 0, 0.5);
}