-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
58 lines (57 loc) · 1.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Mulish:wght@200;300;400;500;600;700;800;900&display=swa"
/>
<link rel="icon" type="image/svg+xml" href="/src/assets/clarityLogo.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Clarity description builder</title>
<style>
.clarityLogo {
width: 300px;
height: 300px;
animation-name: spin;
animation-duration: 10000ms;
animation-iteration-count: infinite;
animation-timing-function: linear;
}
@keyframes spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}
.clarityLogoContainer {
display: flex;
justify-content: center;
align-items: center;
height: 95%;
position: absolute;
top: 10px;
bottom: 10px;
left: 10px;
right: 10px;
}
body {
background: radial-gradient(circle, hsl(240, 21%, 16%) 0%, hsl(240, 30%, 4%) 100%);
color: white;
font-family: 'Open Sans', sans-serif, 'Destiny Symbols';
font-size: 12px;
line-height: calc(16 / 12);
-webkit-user-drag: none;
margin: 8px;
}
</style>
</head>
<body>
<div id="app">
<div class="clarityLogoContainer"><img src="./src/assets/clarityLogo.png" class="clarityLogo" /></div>
</div>
<script type="module" src="/src/app.tsx"></script>
</body>
</html>