blob: c790259ff039fcb594b7ac44e6af2b7bef3ff446 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
.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: 5rem;
left: 50%;
transform: translateX(-50%);
white-space: nowrap;
color: rgba(255, 121, 13, 1.0);
font-family: "Druk Wide";
font-size: 1.66vw;
}
|