-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
75 lines (64 loc) · 1.04 KB
/
style.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
/* Gradient Styles */
#stops {
width:300px;
position:relative;
}
.stop {
position:absolute;
background-color:black;
width:10px;
height:10px;
cursor:default;
border:2px solid white;
}
.stop.select {
border:2px solid orange;
}
#stop-0 {
left:0;
}
#stop-1 {
left:293px;
}
.picker {
background-image:url('colorWheelValue.png');
position:relative;
width:150px;
height:150px;
float:left;
}
.color-wheel {
background-image: url('colorWheel.png');
width:150px;
height:150px;
cursor:default;
position:absolute;
}
#cross-hair {
width:4px;
height:4px;
background-color:white;
border:1px solid black;
position:relative;
top:72px;
left:72px;
}
.value {
height:150px;
width:15px;
border:2px solid white;
background: -webkit-gradient(linear, left bottom, left top, from(black), to(white));
background: -moz-linear-gradient(90deg, black, white);
float:left;
margin-left:15px;
}
#value-slider {
height:4px;
width:15px;
border:1px solid black;
background-color:white;
position:relative;
left:-1px;
top:0px;
}
p { clear:both; }