-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
113 lines (102 loc) · 2.89 KB
/
Copy pathindex.html
File metadata and controls
113 lines (102 loc) · 2.89 KB
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
<!DOCTYPE html>
<html lang="<%- injectLang %>">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<style>
.intersecting-circles-spinner-wrapper {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.intersecting-circles-spinner,
.intersecting-circles-spinner * {
box-sizing: border-box;
}
.intersecting-circles-spinner {
height: 70px;
width: 70px;
position: relative;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.intersecting-circles-spinner .spinnerBlock {
animation: intersecting-circles-spinners-animation 1200ms linear infinite;
transform-origin: center;
display: block;
height: 35px;
width: 35px;
}
.intersecting-circles-spinner .circle {
display: block;
border: 2px solid #ff1d5e;
border-radius: 50%;
height: 100%;
width: 100%;
position: absolute;
left: 0;
top: 0;
}
.intersecting-circles-spinner .circle:nth-child(1) {
left: 0;
top: 0;
}
.intersecting-circles-spinner .circle:nth-child(2) {
left: calc(35px * -0.36);
top: calc(35px * 0.2);
}
.intersecting-circles-spinner .circle:nth-child(3) {
left: calc(35px * -0.36);
top: calc(35px * -0.2);
}
.intersecting-circles-spinner .circle:nth-child(4) {
left: 0;
top: calc(35px * -0.36);
}
.intersecting-circles-spinner .circle:nth-child(5) {
left: calc(35px * 0.36);
top: calc(35px * -0.2);
}
.intersecting-circles-spinner .circle:nth-child(6) {
left: calc(35px * 0.36);
top: calc(35px * 0.2);
}
.intersecting-circles-spinner .circle:nth-child(7) {
left: 0;
top: calc(35px * 0.36);
}
@keyframes intersecting-circles-spinners-animation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
</style>
<title><%- injectTitle %></title>
</head>
<body>
<div id="app">
<div class="intersecting-circles-spinner-wrapper">
<div class="intersecting-circles-spinner">
<div class="spinnerBlock">
<span class="circle"></span>
<span class="circle"></span>
<span class="circle"></span>
<span class="circle"></span>
<span class="circle"></span>
<span class="circle"></span>
<span class="circle"></span>
</div>
</div>
</div>
</div>
<%- injectScript %> <%- injectCss %>
<script type="module" src="/src/main.ts"></script>
</body>
</html>