-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathedit.css
More file actions
195 lines (164 loc) · 3.63 KB
/
edit.css
File metadata and controls
195 lines (164 loc) · 3.63 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
@import url(../clf.css);
@import url(features.css);
#steps {
padding-left: 24px;
}
.step {
border-left: 4px dotted #789;
border-radius: 1em;
clear: both;
margin: 1em 1em 2em 0;
padding-left: 16px;
padding-bottom: 1em;
}
abbr { cursor: help; }
.featurePhoto {
height: 352px;
/*background: url(http://iweb.cns.gov.ns.ca/whoosh/sites/default/themes/whoosh/cloudswideseamless.jpg);
-webkit-animation: clouds 90s linear 0s infinite;
-moz-animation: clouds 90s linear 0s infinite;
-ms-animation: clouds 90s linear 0s infinite;
animation: clouds 90s linear 0s infinite;*/
}
fieldset {
border: 0;
}
.features {
float: left;
margin-bottom: 20px;
}
#photoID {
float: right;
overflow: visible;
width: 290px;
}
.note, #featureIDbox {
background: #ffc;
border-radius: 0.5em;
box-shadow: 8px 4px 32px #f9f9c9 inset, 4px 4px 6px #eee;
color: #555;
float: right;
font-size: small;
margin-right: 16px;
margin-bottom: 1em;
padding: 1em;
width: 33%;
}
#photoID .note, #featureIDbox {
float: none;
width: 256px;
}
#featureID {display: block; width: 100%;}
#featureID:invalid { background: #900; color: #ff0; }
#photofields {
background: #aaa;
background: rgba(70%,80%,90%,0.7);
border: 4px solid #789;
border-radius: 1em;
box-shadow: 1em 1em 2em #ddd inset;
color: #fff;
font: medium sans-serif;
left: 20px;
position: absolute;
top: 32px;
width: 90%;
}
#photofields legend {
background: #eee;
background: rgba(90%,90%,90%,0.9);
border: 4px solid #789;
border-radius: 1em;
color: #333;
padding: 0.5em 2em;
position: absolute;
top: -1.5em;
left: 1em;
text-shadow: 1px 1px 4px #999;
}
#photofields ul {
font-size: small;
overflow: auto;
}
#photofields dl {
margin: 0;
padding: 0.5em 24px;
}
#photofields dt {
padding-top: 32px;
overflow: hidden;
}
#photofields dt label {
float: left;
font-size: large;
}
#photofields dt small {
color: #333;
display: block;
font-size: small;
padding-top: 4px;
text-align: right;
}
#photofields dd {
margin: 2px;
padding: 0;
}
#photofields input {
background: rgba(100%,100%,100%,0.3);
border-radius: 8px;
border-width: 1px;
color: #000;
padding: 4px;
}
#photofields input:focus {background: #fff;}
#photolink { display: block; }
.features input, .features textarea {
width: 99%;
}
.featureContent input, .featureContent textarea {
background: transparent;
border: 1px solid transparent;
color: #fff;
font: #fff;
}
.featureContent input:invalid, .featureContent textarea:invalid {
background: #fff;
background: rgba(255,255,255,0.7)
border-color: #fff #bbb #bbb #fff;
color: black;
}
.featureTitle { color: #fff; }
.featureContent input:focus, .featureContent textarea:focus,
.featureContent input:hover, .featureContent textarea:hover {
border-color: #abc;
}
.featureContent legend { display: none; }
.featureContent label {
font-size: x-small;
position: absolute;
right: 100%;
margin-top: 8px;
z-index: 9;
}
#summary {
height: 45px;
}
#editLinks input:invalid {
color: #444;
font-style: italic;
}
.actions {
font-size: large;
margin: 1em;
}
.action {
background: #6f6;
border: 4px solid #393;
border-radius: 1em;
box-shadow: 1em 1em 2em #9f9 inset, -1em -1em 2em #393 inset;
padding: 0.5em 2em;
text-decoration: underline;
}
@-webkit-keyframes clouds { from { background-position: 0px 0px; } to { background-position: -1399px 0px; } }
@-moz-keyframes clouds { from { background-position: 0px 0px; } to { background-position: -1399px 0px; } }
@-ms-keyframes clouds { from { background-position: 0px 0px; } to { background-position: -1399px 0px; } }
@keyframes clouds { from { background-position: 0px 0px; } to { background-position: -1399px 0px; } }