-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
62 lines (53 loc) · 1.21 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>React Smart Select Demo</title>
<style>
body {
font-family: sans-serif;
}
#app {
max-width: 80%;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
}
.box {
box-sizing: border-box;
display: inline-block;
flex: 0 0 auto;
padding: 10px;
width: 33%;
}
@media (max-width: 376px) {
#app {
flex-wrap: wrap;
}
.box {
width: 100%;
}
}
.smart-select.fancy-select {
font-family: 'Times New Roman', Time, serif;
}
.smart-select.fancy-select .rss-dropdown .rss-option:hover {
background-color: #dac281;
color: #efe8de;
}
.smart-select.fancy-select .rss-label {
justify-content: center;
}
.smart-select.fancy-select .rss-label em {
margin-left: 0.5em;
}
.smart-select.fancy-select .rss-label:after {
content: none;
}
</style>
</head>
<body>
<div id="app"></div>
<script src="./bundle.js"></script>
</body>
</html>