-
Notifications
You must be signed in to change notification settings - Fork 36
/
index.css
121 lines (108 loc) · 1.75 KB
/
index.css
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
* {
margin: 0;
padding: 0;
list-style: none;
box-sizing: border-box;
}
html, body {
height: 100%;
}
body {
background: #fff;
overflow: hidden;
}
.link {
position: absolute;
right: 15px;
bottom: 15px;
color: #333;
}
.control {
width: 440px;
position: absolute;
right: 30px;
top: 30px;
}
.control li {
margin-bottom: 15px;
display: flex;
justify-content: flex-start;
align-items: center;
}
label {
font-size: 16px;
margin-right:15px;
width:150px;
flex-shrink: 0;
cursor: pointer;
color:#999;
}
.radio-label{
width:auto;
display: inline-block;
display: flex;
justify-content: center;
align-items: center;
color:#333;
}
input {
display: block;
width: 100%;
padding: 6px 12px;
outline: none;
}
input[type=radio] {
width:12px;
height:12px;
margin-left:10px;
}
input[type=text]:focus {
border-color: #66afe9;
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
}
input[type="range"] {
margin-top: 10px;
-webkit-appearance: none;
background-color: #e4e7ed;
height: 4px;
padding: 0;
}
input[type="range"]::-webkit-slider-thumb {
-webkit-appearance: none;
background-color: #fff;
border: 2px solid #409eff;
width: 12px;
height: 12px;
border-radius: 50%;
cursor: pointer;
}
.value-span{
color:#333
}
.btn{
display: block;
cursor: pointer;
width:140px;
height:30px;
line-height: 30px;
color:#333;
border:1px solid #ddd;
border-radius: 15px;
text-align: center;
text-decoration: none;
background: #fff;
margin:30px auto 0;
}
@media screen and (max-width:959px){
.control{
width:100%;
position: absolute;
left:0;bottom:0;
top: inherit;
right: inherit;
padding:15px;
}
.control li{
flex-wrap: wrap;
}
}