-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathud.css
60 lines (56 loc) · 763 Bytes
/
ud.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
.togglerbuttons {
height: 24px;
margin: 0 auto;
font-size: 12px;
line-height: 16px;
}
.icon {
position: relative;
width:16px;
height:16px;
display: inline-block;
margin: 0 5px 0 0;
}
.minusbutton {
border:1px solid #aaa;
width: 7px;
height: 7px;
position: relative;
top:0;
left:0;
}
.minusbutton:after {
background-color: #aaa;
width: 7px;
height: 1px;
position: absolute;
top:3px;
left: 0px;
content:"";
}
.plusbutton {
border:1px solid #aaa;
width: 7px;
height: 7px;
position: relative;
top:0;
left:0;
}
.plusbutton:after {
background-color: #aaa;
width: 7px;
height: 1px;
position: absolute;
top:3px;
left: 0px;
content:"";
}
.plusbutton:before {
background-color: #aaa;
width: 1px;
height: 7px;
position: absolute;
top:0px;
left: 3px;
content:"";
}