256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
|
}
/*
Action buttons
*/
.actions {
margin-top: -20px;
margin-bottom: 10px;
}
.actions .button {
background-color: hsl(0, 0%, 50%);
text-align: center;
float: right;
margin-left: 2px;
padding: 1px 4px 3px 4px;
/*width: 18px;
height: 18px;*/
cursor: pointer;
font-size: 14px;
font-weight: bold;
color: hsl(0, 0%, 96%);
border-radius: 2px;
}
.actions .button:hover {
background-color: hsl(0, 0%, 40%);
color: hsl(0, 0%, 100%);
}
|
|
<
<
|
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
|
}
/*
Action buttons
*/
.actions {
margin: 0 0 5px 10px;
}
.actions .button {
background-color: hsl(0, 0%, 50%);
text-align: center;
float: right;
margin-left: 2px;
padding: 1px 4px 3px 4px;
/*width: 18px;
height: 18px;*/
cursor: pointer;
font-size: 14px;
color: hsl(0, 0%, 96%);
border-radius: 2px;
}
.actions .button:hover {
background-color: hsl(0, 0%, 40%);
color: hsl(0, 0%, 100%);
}
|
303
304
305
306
307
308
309
310
311
312
313
314
315
316
|
background-color: hsl(30, 50%, 50%);
color: hsl(30, 0%, 96%);
}
.actions .orange:hover {
background-color: hsl(30, 70%, 40%);
color: hsl(30, 0%, 100%);
}
/*
ERRORS
*/
.error {
|
>
>
>
|
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
|
background-color: hsl(30, 50%, 50%);
color: hsl(30, 0%, 96%);
}
.actions .orange:hover {
background-color: hsl(30, 70%, 40%);
color: hsl(30, 0%, 100%);
}
.actions .bold {
font-weight: bold;
}
/*
ERRORS
*/
.error {
|