-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathindex.html
64 lines (64 loc) · 1.23 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
59
60
61
62
63
64
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Dialog</title>
<script type="text/javascript" src="js/build.js"></script>
<style>
a {
cursor: pointer;
color: blue;
}
.tabs {
border-bottom: 1px solid #000000;
margin: 0em;
padding: 0;
list-style: none;
}
.tabs li {
display: inline-block;
padding: .5em;
cursor: pointer;
}
.tabs li.active {
background: #fbfbfb;
border-bottom: 2px solid #000000;
}
.list {
background: rgba(0, 0, 0, .03);
margin: 0em;
padding: .5em;
}
.list ul {
list-style: none;
margin: 0em;
padding: 0em;
}
.list li {
background: rgba(0, 0, 0, .03);
padding: .5em;
margin: .5em 0;
}
.list li:last-child {
margin-bottom: 0;
}
.switch {
display: inline-block;
cursor: pointer;
border: 2px solid black;
background: #fff;
}
.switch span {
display: inline-block;
padding: .4em;
}
.switch .active {
background: #000;
color: #fff;
}
</style>
</head>
<body>
<div id="container"></div>
</body>
</html>