-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (30 loc) · 888 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1" />
<link href="https://seanockert.com/images/icon-sean-bamboo.png" rel="icon" type="image/png">
<title>SO Card Sort</title>
<style>
.loading {
font-family: sans-serif;
text-align: center;
position: absolute;
top: 50%;
left: 50%;
margin-top: -14px;
margin-left: -50px;
color: #666;
padding: 12px 24px;
border-radius: 6px;
background-color: #eee;
}
</style>
<link href='dist/style.css' rel='stylesheet' type='text/css'>
</head>
<body>
<div id="app"><div class="loading">Loading...</div></div>
<script src="dist/build.js"></script>
<noscript><div class="loading">Please enable JavaScript in your browser.</div></noscript>
</body>
</html>