forked from Frando/corestore
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
49 lines (49 loc) · 1.01 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
<!DOCTYPE html>
<html lang='en'>
<head>
<meta charset='UTF-8'/>
<title>corestore example</title>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<style type="text/css">
h1 {
margin: 0 2rem;
padding: 0;
}
body {
font-family: sans-serif;
}
.core-list {
margin: 1rem 0;
padding: 0;
}
.core-list li {
list-style-type: none;
}
.core-list li.active a,
.core-list li a:hover {
background: #ccc;
}
.core-list li a {
text-decoration: none;
display: block;
padding: 5px;
color: #000;
}
.core-select, .core-view {
margin: 0 2rem;
}
.listing {
word-wrap: break-word;
}
@media (min-width: 1000px) {
main {
display: flex;
}
}
</style>
</head>
<body>
<div id='root'></div>
<script type="text/javascript" src='bundle.js'></script>
</body>
</html>`