-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
105 lines (98 loc) · 3.49 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
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
<head>
<title>Tunage</title>
<link href="http://gmpg.org/xfn/11" rel="profile">
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="/assets/stylesheets/party.min.css">
<!-- Icons and Theme -->
<link rel="icon" sizes="32x32" href="/assets/images/party/Party-icon-32.png">
<link rel="icon" sizes="48x48" href="/assets/images/party/Party-icon-48.png">
<link rel="icon" sizes="96x96" href="/assets/images/party/Party-icon-96.png">
<link rel="icon" sizes="144x144" href="/assets/images/party/Party-icon-144.png">
<link rel="icon" sizes="192x192" href="/assets/images/party/Party-icon-192.png">
<meta name="apple-mobile-web-app-title" content="Party">
<meta name="application-name" content="Party">
<meta name="theme-color" content="#242424">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes">
<meta name="viewport" content="minimal-ui, width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="manifest" href="/assets/party.webmanifest">
</head>
<body>
<!-- TODO: Add support for https://developers.google.com/web/updates/2015/10/display-mode -->
<!-- TODO: Generate this at compile-time with "server-side rendering" -->
<main class="splash">
<div id="logo">
<img src="/assets/images/party/Party-icon-72.png" alt="Party" />
<span>Tunage</span>
</div>
<div id="content">
<div class="spinner">
<style>
.spinner,
.spinner:after {
border-radius: 50%;
width: 10em;
height: 10em;
}
.spinner {
font-size: 6px;
position: relative;
align-self: center;
border-top: 1em solid rgba(255, 255, 255, 0.1);
border-right: 1em solid rgba(255, 255, 255, 0.1);
border-bottom: 1em solid rgba(255, 255, 255, 0.1);
border-left: 1em solid #ffffff;
-webkit-transform: translateZ(0);
-ms-transform: translateZ(0);
transform: translateZ(0);
-webkit-transform-origin: center;
-moz-transform-origin: center;
transform-origin: center;
-moz-animation: spin 950ms linear infinite;
-webkit-animation: spin 950ms linear infinite;
animation: spin 950ms linear infinite;
}
@-moz-keyframes spin {
0% {
-moz-transform: rotate(0deg);
}
100% {
-moz-transform: rotate(360deg);
}
}
@-webkit-keyframes spin {
0% {
-webkit-transform: rotate(0deg);
}
100% {
-webkit-transform: rotate(360deg);
}
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
main.splash .spinner {
opacity: 1;
transition: 225ms opacity ease-out;
}
main.splash.hiding .spinner {
opacity: 0;
}
</style>
</div>
</div>
<footer>
<p><a href="https://chancesnow.me/about" target="_blank">© Chance Snow</a></p>
<p>Made with love in PDX.</p>
</footer>
</main>
<script defer src="/assets/javascript/party.js"></script>
</body>
</html>