-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathindex.html
55 lines (46 loc) · 1.19 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css" integrity="sha384-WskhaSGFgHYWDcbwN70/dfYBj47jz9qbsMId/iRN3ewGhXQFZCSftd1LZCfmhktB" crossorigin="anonymous">
<title>Counters</title>
<style>
/*
body {
font-family: sans-serif;
}
li {
padding: .2em;
}
button {
border: 1px solid #cccccc;
background: #fff;
padding: .5em .8em;
border-radius: 2px;
cursor: pointer;
background-image: linear-gradient(to bottom, #fff, #fff 3%, #f8f9f9 4%, #e3ece9 98%, #ccc 99%);
box-shadow: 0px 0px 9px -4px rgba(0, 0, 0, 0.40);
}
button:hover {
background-image: linear-gradient(-180deg, #fcfbfb 0%, #eff3f6 90%);
}
button:focus {
outline: none;
}
button:active {
box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, .2);
}
button.selected {
background-image: linear-gradient(to bottom, #ccc, #e3ece9 1%, #f8f9f9 98%);
}
*/
#mount {
padding: 1em;
}
</style>
</head>
<body>
<div id="mount"></div>
<script src="src/index.ts"></script>
</body>
</html>