forked from giscloud/GIS-Cloud-Examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcolors.css
More file actions
117 lines (100 loc) · 1.6 KB
/
colors.css
File metadata and controls
117 lines (100 loc) · 1.6 KB
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
table { font: inherit }
#example {
background-color: #fafafa;
border: solid thin #ccc;
height: 330px;
position: relative;
top: 40px;
width: 620px;
}
#ft {
margin-top: 4.2em;
position: relative;
color: #999;
}
#col1, #col2 {
padding-bottom: 1em;
padding-left: 1em;
padding-right: 1em;
margin: 1em;
background-color: #fff;
border: solid thin #ccc;
width: 255px;
position: absolute;
top: 10px;
left: 10px;
}
#col2 {
left: 300px;
}
input, select {
border: solid thin #ccc;
}
input:hover, select:hover {
border: solid thin #888;
}
#col1 input, #col2 input {
width: 2em;
margin-right: 1.2em;
}
#colInput1, #colInput2 {
width: 5em;
position: absolute;
right: 1em;
top: 0.5em;
border: none;
cursor: pointer;
text-decoration: underline;
}
.err {
border: solid thin red;
}
#col1 th, #col2 th {
height: 2em;
text-align: left;
padding: 0.5em;
font-weight: bold;
}
#controls {
position: absolute;
top: 160px;
left: 30px;
width: 300px;
}
#nrOfSwatches {
width: 2em
}
#colorbar {
position: absolute;
background-color: #fff;
width: 550px;
height: 60px;
top: 210px;
left: 20px;
border: solid thin #ccc;
padding: 1em;
}
#colorbar div {
float: left;
height: 100%;
border-style: none;
margin: 0px;
}
#colorpicker1, #colorpicker2 {
background-color: #fff;
filter: alpha(opacity=50);
-moz-opacity: 0.25;
opacity: 0.75;
border: thin solid #ccc;
left: 150px;
padding: 1em;
position: absolute;
top: 50px;
z-index: 100;
}
#colorpicker2 {
left: 430px;
}
.hide {
display: none;
}