-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
88 lines (83 loc) · 2.64 KB
/
index.html
File metadata and controls
88 lines (83 loc) · 2.64 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<link rel="icon" type="image/png" href="/img/favicon.png" />
<script type="module" src="https://sdk.scdn.co/spotify-player.js"></script>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,slnt,wdth,wght,GRAD,ROND@6..144,-10..0,25..151,1..1000,0..100,0..100&display=swap"
rel="stylesheet"
/>
<link href="/icons/style.css" rel="stylesheet" />
<title>Beardify</title>
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image" content="/img/sharing-twitter.png" />
<meta name="image" property="og:image" content="/img/sharing-twitter.png" />
<meta name="twitter:title" content="Beardify" />
<meta name="title" property="og:title" content="Beardify" />
<meta
name="twitter:description"
content="Experimental Spotify client with album collection feature (and more)..."
/>
<meta
name="description"
property="og:description"
content="Experimental Spotify client with album collection feature (and more)..."
/>
<meta
name="description"
content="Experimental Spotify client with album collection feature (and more)..."
/>
<meta name="author" content="@BeardedBear" />
</head>
<body>
<noscript>
<strong>
We're sorry but Beardify doesn't work properly without JavaScript
enabled. Please enable it to continue.
</strong>
</noscript>
<style>
body {
height: 100%;
margin: 0;
padding: 0;
width: 100%;
}
.loading-app {
background: #181b21;
display: grid;
height: 100dvh;
place-content: center;
width: 100vw;
}
.loader-app {
animation: spin 0.3s linear infinite;
border: 0.4rem solid #1b1e26;
border-radius: 50%;
border-top: 0.4rem solid #9064ff;
height: 2.8rem;
width: 2.8rem;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
</style>
<div id="app">
<div class="loading-app">
<div class="loader-app"></div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
<script type="module" src="/src/spotify.ts"></script>
</body>
</html>