blob: 059acec91a0adbc28cde4f79ff134b12f3cf7e88 (
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
|
.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;
}
.subtitles {
position: absolute;
bottom: 4rem;
left: 50%;
transform: translateX(-50%);
white-space: nowrap;
color: white;
text-shadow: 0 0 6px #000;
/*color: rgba(255, 121, 13, 1.0);*/
font-family: "Druk Wide";
font-size: 1.66vw;
}
|