blob: 802e26e53af7d3ec090341291a5ae7d2b8e2cba2 (
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
56
57
58
59
60
61
|
.petros-left {
position: absolute;
bottom: 50px;
left: 40px;
cursor: pointer;
opacity: 0.0;
transform: scale(0.9);
transition: opacity 0.4s;
pointer-events: none;
}
.petros-right {
position: absolute;
bottom: 50px;
right: 40px;
transform: scale(0.9);
cursor: pointer;
opacity: 0.0;
transition: opacity 0.4s;
pointer-events: none;
}
.petros-text {
position: absolute;
top: 50%; left: 50%;
cursor: pointer;
opacity: 0.0;
transition: opacity 0.5s;
pointer-events: none;
}
.petros-left.visible,
.petros-right.visible,
.petros-text.visible {
opacity: 1.0;
pointer-events: auto;
}
.petros-subtitle {
position: absolute;
bottom: 70px;
left: 50%;
transform: translateX(-50%);
max-width: calc(100vw - 400px);
text-align: center;
font-family: 'Druk Wide', sans-serif;
font-size: 1.5vw;
pointer-events: none;
color: #fff;
text-shadow: 0 0 3px #fff;
transition: opacity 0.4s;
}
.fade-words span {
opacity: 0;
transition: opacity 0.25s;
}
.fade-words span:after {
content: ' ';
}
.fade-words span.visible {
opacity: 1;
}
|