-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
105 lines (100 loc) · 2.49 KB
/
index.html
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8"/>
<title>Voo.su</title>
<meta name="description" content="voo.su">
<meta name="keywords" content="voo.su"/>
<link href="/apple-touch-icon.png" rel="apple-touch-icon">
<link href="/favicon.ico" rel="icon" sizes="any">
<link href="/favicon.svg" rel="icon" type="image/svg+xml">
<link href="/manifest.webmanifest" rel="manifest">
<link href="/tableau.json" rel="yandex-tableau-widget">
<style>
.app-loading {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100px;
height: 100px;
background: transparent;
border: 3px solid #bdc4c4;
border-radius: 50%;
text-align: center;
line-height: 105px;
font-family: Roboto, sans-serif;
font-size: 16px;
color: #000000;
letter-spacing: 2px;
text-transform: uppercase;
}
.app-loading:before {
content: '';
position: absolute;
top: -3px;
left: -3px;
width: 100%;
height: 100%;
border: 3px solid transparent;
border-top: 3px solid #333;
border-right: 3px solid #333;
border-radius: 50%;
animation: animateC 2s linear infinite;
}
span.inner {
display: block;
position: absolute;
top: calc(50% - 2px);
left: 50%;
width: 50%;
height: 4px;
background: transparent;
transform-origin: left;
animation: animate 2s linear infinite;
}
span.inner:before {
content: '';
position: absolute;
width: 16px;
height: 16px;
border-radius: 50%;
background: #000000;
top: -6px;
right: -8px;
box-shadow: 0 0 20px #000000;
}
@keyframes animateC {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
@keyframes animate {
0% {
transform: rotate(45deg);
}
100% {
transform: rotate(405deg);
}
}
</style>
</head>
<body>
<noscript>
<strong>
Voo.su работает с включенным JavaScript и требует его современную поддержку.
Включите поддержку JavaScript или воспользуйтесь любым современным браузером.
</strong>
</noscript>
<div id="app">
<div class="app-loading">
VOO.SU
<span class="inner"></span>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>