blob: a23c657c2c67116e2617d48b7240d8570ad05ff4 (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
.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-loader,
.petros-text {
position: absolute;
top: 50%; left: 50%;
cursor: pointer;
opacity: 0.0;
transition: opacity 0.5s;
pointer-events: none;
}
.petros-text svg {
pointer-events: none;
width: 100px;
height: 101px;
}
.petros-text svg path {
fill: none;
stroke: #ff780c;
stroke-width: 0.0762;
stroke-linecap: butt;
stroke-linejoin: miter;
stroke-miterlimit: 2.61313;
stroke-opacity: 1;
}
.petros-text.white svg path {
stroke: #fff;
}
.petros-left.visible.noclick {
pointer-events: none !important;
}
.petros-left.visible,
.petros-right.visible,
.petros-text.visible {
opacity: 1.0;
pointer-events: auto;
}
.petros-loader.visible {
opacity: 1.0;
}
.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;
}
|