blob: 311fa6f191aa36ce65fd0f3e9c7de8668794a96f (
plain)
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
|
.chapter-title {
position: absolute;
top: 2vh;
left: 50%;
transform: translateX(-50%);
white-space: nowrap;
color: rgba(255, 121, 13, 1.0);
font-family: "Druk Wide";
font-size: 1.66vw;
transition: opacity 0.5s;
opacity: 0;
}
.chapter-headphones {
position: absolute;
top: -4px;
left: 50%;
transform: translateX(-50%);
white-space: nowrap;
color: #fff;
padding: 1rem;
font-family: 'Helvetica', sans-serif;
font-size: 1.2rem;
line-height: 1.6;
pointer-events: none;
user-select: none;
text-align: center;
transition: opacity 0.5s;
opacity: 0;
}
.charles-text {
position: absolute;
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
width: 80vw;
font-family: "Druk Wide";
font-size: 1.5vw;
color: #fff;
text-shadow: 0px 2px 6px rgba(0,0,0,0.5);
opacity: 0;
pointer-events: none;
transition: opacity 0.5s;
text-align: justify;
}
.charles-text.visible {
opacity: 1;
pointer-events: auto;
}
.charles-credit {
text-align: right;
}
|