-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
67 lines (57 loc) · 895 Bytes
/
main.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
body {
font-size: 12px;
font-family: Arial, Verdana, sans-serif;
}
.sliders-container {
position: relative;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.row {
position: relative;
margin: 10px;
height: 30px;
}
.col{
position: relative;
float: left;
}
.col:first-child{
margin-right: 5px;
padding-top: 5px;
height: 25px;
}
#colour {
border: 1px solid #000;
width: 300px;
height: 300px;
}
.clear {
clear: both;
}
/* Slider Skin */
.slider-holder{
width:446px;
height:14px;
background-color: #ddd;
padding-top: 10px;
border-radius: 4px;
border:1px solid #ccc;
}
.slider-line{
width: 426px;
height: 4px;
border-bottom: 1px solid #bbb;
background-color: #888;
margin: 0 auto;
}
.slider-dragger{
width: 26px;
height: 16px;
border-radius: 3px;
background-color: #555;
top: -6px;
left: 0px;
}