-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (63 loc) · 1.51 KB
/
index.html
File metadata and controls
66 lines (63 loc) · 1.51 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
<!DOCTYPE html>
<head>
<link rel="icon" type="image/x-icon" href="public/favicon.ico">
</head>
<html>
<script type="module" src="index.js"></script>
<body>
<style>
body {
width: 800px;
margin: auto;
background-color: white;
font-family: helvetica, arial, sans-serif;
text-align: center;
}
html {
background-color: white;
}
h1 {
color: #333;
text-align: center;
}
#localfirst {
position: fixed;
top: 0;
right: 0;
width: 100px;
}
#logo {
position: fixed;
top: 0;
left: 0;
width: 130px;
}
img {
width: 100%;
}
@keyframes fadein {
0% { opacity: 0; }
100% { opacity: 1; }
}
#spinner {
width: 40px;
height: 40px;
margin: 0 auto;
background-color: #31a46f;
animation: rotateplane 1.2s infinite ease-in-out;
}
@keyframes rotateplane {
0% { transform: perspective(120px) rotateX(0deg) rotateY(0deg); }
50% { transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg); }
100% { transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg); }
}
</style>
<div id="frontpage">
<div id="localfirst"><img src="local-first.png"></div>
<div id="logo"><img src="mywebstrates.png"></div>
<h1><em>my.webstrates.net</em><br>Local-first Webstrates</h1>
<p id="content"></p>
</div>
<div id="spinner" style="display: none;"></div>
</body>
</html>