More styling:
[armadillo.git] / web_frontend / screen.css
1 /*
2 * Armadillo File Manager
3 * Copyright (c) 2010, Robert Sesek <http://www.bluestatic.org>
4 *
5 * This program is free software: you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License as published by the Free Software
7 * Foundation, either version 3 of the License, or any later version.
8 */
9
10 body {
11 font-family: "Lucida Grande", Helvetica, Arial, sans-serif;
12 padding: 1.5em;
13 font-size: 1em;
14 background-color: rgb(245, 245, 245);
15 }
16
17 h1 {
18 font-size: 2em;
19 }
20
21 #ls {
22 list-style: none;
23 }
24
25 #ls li {
26 padding: .3em;
27 height: 1.5em;
28 line-height: 1.5em;
29 }
30
31 #ls li:nth-child(odd) {
32 background-color: rgb(223, 235, 246);
33 }
34 #ls li:nth-child(even) {
35 background-color: rgb(255, 255, 255);
36 }
37
38 #error {
39 border-style: solid;
40 border-width: .15em;
41 border-color: rgb(167, 40, 26);
42 border-radius: .2em;
43 padding: .2em;
44
45 background-color: rgba(167, 40, 26, 0.1);
46 color: rgb(0, 30, 30);
47 }