-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
61 lines (54 loc) · 958 Bytes
/
style.css
File metadata and controls
61 lines (54 loc) · 958 Bytes
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
@import url(https://fonts.googleapis.com/css?family=Source+Sans+Pro);
body {
background: #ffffff;
color: #414141;
font: 400 17px/2em 'Source Sans Pro', sans-serif;
}
.select-box {
cursor: pointer;
position : relative;
max-width: 20em;
margin: 5em auto;
width: 100%;
}
.select,
#leng {
color: #414141;
display: block;
font: 400 17px/2em 'Source Sans Pro', sans-serif;
}
.select {
width: 100%;
position: absolute;
top: 0;
padding: 5px 0;
height: 40px;
opacity: 0;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
background: none transparent;
border: 0 none;
}
.select-box1 {
background: #ececec;
}
html,
body {
height: 100%;
}
#leng{
position: relative;
padding: 5px 10px;
cursor: pointer;
}
.open #leng::after {
content: "▲";
}
#leng::after {
content: "▼";
font-size: 12px;
position: absolute;
right: 0;
top: 0;
padding: 5px 15px;
border-left: 5px solid #fff;
}