File size: 1,632 Bytes
2409829
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<!doctype html>
<html>
	<head>
		<meta charset="utf-8" />
		<title>Graphite</title>
		<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png" />
		<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png" />
		<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png" />
		<link rel="manifest" href="site.webmanifest" />
		<link rel="mask-icon" href="safari-pinned-tab.svg" color="#473a3a" />
		<meta name="viewport" content="width=device-width, initial-scale=0.5, maximum-scale=0.5, minimum-scale=0.5" />
		<meta name="apple-mobile-web-app-title" content="Graphite" />
		<meta name="application-name" content="Graphite" />
		<meta name="msapplication-TileColor" content="#ffffff" />
		<meta name="theme-color" content="#ffffff" />
		<meta name="color-scheme" content="dark only" />
		<meta name="darkreader-lock" />
		<!-- INDEX_HTML_HEAD_REPLACEMENT -->
	</head>
	<body>
		<noscript>JavaScript is required</noscript>
		<style>
			body {
				background: #222;
				height: 100%;
				margin: 0;
			}

			body::after {
				content: "";
				display: block;
				position: absolute;
				left: 50%;
				top: 50%;
				width: 60px;
				height: 60px;
				border-radius: 50%;
				border: 4px solid #eee;
				border-color: #eee transparent #eee transparent;
				animation: spinning-loading-indicator 1s linear infinite;
			}

			@keyframes spinning-loading-indicator {
				0% {
					transform: translate(-30px, -30px) rotate(0deg);
				}
				100% {
					transform: translate(-30px, -30px) rotate(360deg);
				}
			}
		</style>
		<script type="module" src="src/main.ts"></script>
	</body>
</html>