-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (68 loc) · 1.99 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Prototype</title>
<style>
body, html {
font-size: 10px;
font-family: Roboto, sans-serif;
font-weight: 100;
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
overflow: hidden;
}
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
box-sizing: border-box;
}
.Loading-screen {
font-size: 3rem;
font-weight: 200;
width: 100vw;
height: 62.5vh;
margin-top: 14.0625vh;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.Loading-screen__loader {
display: block;
width: 1.4em;
height: 1.4em;
border: .08em solid rgba(0, 0, 0, .15);
border-top-color: currentColor;
border-radius: 100%;
animation-name: spin;
animation-duration: 1s;
animation-iteration-count: infinite;
animation-timing-function: linear;
margin: 1em;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(359deg);
}
}
</style>
<link rel="stylesheet" href="./dist/styles.css">
</head>
<body>
<div id="app">
<section class="Loading-screen">
<i class="Loading-screen__loader"></i> Loading …
</section>
</div>
<script src="./dist/build.js" async defer></script>
<link href="https://fonts.googleapis.com/css?family=Roboto:100,400,900" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</body>
</html>