-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (83 loc) · 2.09 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
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/WSP.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="WaldorfWahlen - Projektwahlen der Waldorfschule Potsdam"
/>
<meta
name="google-site-verification"
content="zPdCzE-gxQdnauAWPkz0UKsT0cSsabVcDTBxlgehzWk"
/>
<meta name="msvalidate.01" content="403B48D78F85E442E31653A41EC85B13" />
<!-- Filled -->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<!-- Outlined -->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined"
rel="stylesheet"
/>
<!-- Rounded -->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons+Round"
rel="stylesheet"
/>
<!-- Sharp -->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons+Sharp"
rel="stylesheet"
/>
<!-- Two Tone -->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons+Two+Tone"
rel="stylesheet"
/>
<title>WaldorfWahlen</title>
</head>
<body>
<div id="root">
<div class="spinner"></div>
</div>
<style>
body {
padding: 0px;
margin: 0px;
}
.firebase-emulator-warning {
display: none;
}
.spinner {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #1f1b16;
}
.spinner::before {
content: "";
width: 50px;
height: 50px;
border-radius: 50%;
border: 5px solid #85735e;
border-top: 5px solid #f89e24;
animation: spin 1s linear infinite;
}
/* Add animation (spin) */
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>