|
@@ -136,4 +136,119 @@ ul.inline
|
136
|
136
|
ul.inline li
|
137
|
137
|
{
|
138
|
138
|
display: inline;
|
139
|
|
-}
|
|
139
|
+}
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+/* Messages flash */
|
|
143
|
+
|
|
144
|
+.message
|
|
145
|
+{
|
|
146
|
+ -webkit-background-size: 40px 40px;
|
|
147
|
+ -moz-background-size: 40px 40px;
|
|
148
|
+ background-size: 40px 40px;
|
|
149
|
+ background-image: -webkit-gradient(linear, left top, right bottom,
|
|
150
|
+ color-stop(.25, rgba(255, 255, 255, .05)), color-stop(.25, transparent),
|
|
151
|
+ color-stop(.5, transparent), color-stop(.5, rgba(255, 255, 255, .05)),
|
|
152
|
+ color-stop(.75, rgba(255, 255, 255, .05)), color-stop(.75, transparent),
|
|
153
|
+ to(transparent));
|
|
154
|
+ background-image: -webkit-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
|
|
155
|
+ transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
|
|
156
|
+ transparent 75%, transparent);
|
|
157
|
+ background-image: -moz-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
|
|
158
|
+ transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
|
|
159
|
+ transparent 75%, transparent);
|
|
160
|
+ background-image: -ms-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
|
|
161
|
+ transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
|
|
162
|
+ transparent 75%, transparent);
|
|
163
|
+ background-image: -o-linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
|
|
164
|
+ transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
|
|
165
|
+ transparent 75%, transparent);
|
|
166
|
+ background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
|
|
167
|
+ transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
|
|
168
|
+ transparent 75%, transparent);
|
|
169
|
+
|
|
170
|
+ -moz-box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
|
|
171
|
+ -webkit-box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
|
|
172
|
+ box-shadow: inset 0 -1px 0 rgba(255,255,255,.4);
|
|
173
|
+ width: 100%;
|
|
174
|
+ border: 1px solid;
|
|
175
|
+ color: #fff;
|
|
176
|
+ padding: 15px;
|
|
177
|
+ position: fixed;
|
|
178
|
+ _position: absolute;
|
|
179
|
+ text-shadow: 0 1px 0 rgba(0,0,0,.5);
|
|
180
|
+ -webkit-animation: animate-bg 5s linear infinite;
|
|
181
|
+ -moz-animation: animate-bg 5s linear infinite;
|
|
182
|
+}
|
|
183
|
+
|
|
184
|
+.info
|
|
185
|
+{
|
|
186
|
+ background-color: #4ea5cd;
|
|
187
|
+ border-color: #3b8eb5;
|
|
188
|
+}
|
|
189
|
+
|
|
190
|
+.error
|
|
191
|
+{
|
|
192
|
+ background-color: #de4343;
|
|
193
|
+ border-color: #c43d3d;
|
|
194
|
+}
|
|
195
|
+
|
|
196
|
+.warning
|
|
197
|
+{
|
|
198
|
+ background-color: #eaaf51;
|
|
199
|
+ border-color: #d99a36;
|
|
200
|
+}
|
|
201
|
+
|
|
202
|
+.success
|
|
203
|
+{
|
|
204
|
+ background-color: #61b832;
|
|
205
|
+ border-color: #55a12c;
|
|
206
|
+}
|
|
207
|
+
|
|
208
|
+.message h3
|
|
209
|
+{
|
|
210
|
+ margin: 0 0 5px 0;
|
|
211
|
+}
|
|
212
|
+
|
|
213
|
+.message p
|
|
214
|
+{
|
|
215
|
+ margin: 0;
|
|
216
|
+}
|
|
217
|
+
|
|
218
|
+.message a.message-close
|
|
219
|
+{
|
|
220
|
+ float: right;
|
|
221
|
+ margin-top: -14px;
|
|
222
|
+ margin-right: 18px;
|
|
223
|
+ margin-bottom: -11px;
|
|
224
|
+}
|
|
225
|
+
|
|
226
|
+.message a.message-close img:HOVER
|
|
227
|
+{
|
|
228
|
+ width: 52px;
|
|
229
|
+ height: 52px;
|
|
230
|
+ margin-bottom: -13px;
|
|
231
|
+}
|
|
232
|
+
|
|
233
|
+@-webkit-keyframes animate-bg
|
|
234
|
+{
|
|
235
|
+ from {
|
|
236
|
+ background-position: 0 0;
|
|
237
|
+ }
|
|
238
|
+ to {
|
|
239
|
+ background-position: -80px 0;
|
|
240
|
+ }
|
|
241
|
+}
|
|
242
|
+
|
|
243
|
+
|
|
244
|
+@-moz-keyframes animate-bg
|
|
245
|
+{
|
|
246
|
+ from {
|
|
247
|
+ background-position: 0 0;
|
|
248
|
+ }
|
|
249
|
+ to {
|
|
250
|
+ background-position: -80px 0;
|
|
251
|
+ }
|
|
252
|
+}
|
|
253
|
+
|
|
254
|
+/* Message flash end */
|