-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
118 lines (113 loc) · 3.03 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
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5"/>
<meta name="theme-color" content="#1A1A1A"/>
<link rel="icon" href="/res/favicon.svg"/>
<title>Студенческий совет МГТУ им. Н.Э. Баумана</title>
<script type="module" src="/src/index.js"></script>
<link rel="manifest" href="/manifest.json"/>
<meta name="description" content="Вся самая важная информация о Студенческом Совете, собранная в одном месте! Просматривайте список мероприятий и записывайтесь на понравившиеся. Или вступайте в ряды Студенческого Совета, создавайте свои мероприятия, и находите именно вашу аудиторию благодаря этому сервису. Вместе - ещё веселее"/>
<meta name="yandex-verification" content="a9f1c02bfab33b22"/>
</head>
<style>
.circle-loading {
width: 60px;
height: 60px;
margin-left: auto;
margin-right: auto;
}
.lds-default {
display: inline-block;
position: relative;
width: 100%;
height: 100%;
}
.lds-default div {
position: absolute;
width: 7%;
height: 7%;
background: #fff;
border-radius: 50%;
animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
animation-delay: 0s;
top: 46.25%;
left: 82.5%;
}
.lds-default div:nth-child(2) {
animation-delay: -0.1s;
top: 27.5%;
left: 77.5%;
}
.lds-default div:nth-child(3) {
animation-delay: -0.2s;
top: 13.75%;
left: 65%;
}
.lds-default div:nth-child(4) {
animation-delay: -0.3s;
top: 8.75%;
left: 46.25%;
}
.lds-default div:nth-child(5) {
animation-delay: -0.4s;
top: 13.75%;
left: 27.5%;
}
.lds-default div:nth-child(6) {
animation-delay: -0.5s;
top: 27.5%;
left: 13.75%;
}
.lds-default div:nth-child(7) {
animation-delay: -0.6s;
top: 46.25%;
left: 8.75%;
}
.lds-default div:nth-child(8) {
animation-delay: -0.7s;
top: 65%;
left: 13.75%;
}
.lds-default div:nth-child(9) {
animation-delay: -0.8s;
top: 77.5%;
left: 27.5%;
}
.lds-default div:nth-child(10) {
animation-delay: -0.9s;
top: 82.5%;
left: 46.25%;
}
.lds-default div:nth-child(11) {
animation-delay: -1s;
top: 77.5%;
left: 65%;
}
.lds-default div:nth-child(12) {
animation-delay: -1.1s;
top: 65%;
left: 77.5%;
}
@keyframes lds-default {
0%, 20%, 80%, 100% {
transform: scale(1);
opacity: 0.05;
}
50% {
transform: scale(1.5);
opacity: 1;
}
}
</style>
<body>
<div id="app">
<div class="circle-loading">
<div class="lds-default"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div>
</div>
</div>
</body>
</html>