Improve actor appearance. Initial work on row highlighting.
[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 #footer {
22 margin-top: 0.6em;
23 font-size: 0.6em;
24 text-align: right;
25 }
26
27 .smallfont {
28 font-size: 0.7em;
29 }
30
31 #ls {
32 list-style: none;
33 }
34
35 #ls li {
36 padding: .3em;
37 height: 1.5em;
38 line-height: 1.5em;
39 }
40
41 #ls li:nth-child(odd) {
42 background-color: rgb(223, 235, 246);
43 }
44 #ls li:nth-child(even) {
45 background-color: rgb(255, 255, 255);
46 }
47
48 #ls li.file-selected {
49 background-color: green;
50 }
51
52 #ls li.file-active {
53 background-color: rgb(255, 162, 74);
54 }
55
56 #ls li a {
57 text-decoration: underline;
58 }
59
60 #error {
61 border-style: solid;
62 border-width: .15em;
63 border-color: rgb(167, 40, 26);
64 border-radius: .2em;
65 padding: .2em;
66
67 background-color: rgba(167, 40, 26, 0.1);
68 color: rgb(0, 30, 30);
69 }
70
71 .actor {
72 width: 8.5em;
73 height: 8.5em;
74 position: absolute;
75 visibility: hidden;
76
77 background-color: rgb(77, 79, 83);
78
79 padding: .1em;
80
81 border-width: .1em;
82 border-color: rgb(0, 0, 0);
83 border-style: solid;
84 }
85
86 .actor .tile {
87 width: 4em;
88 height: 4em;
89 display: inline-block;
90 margin: .1em;
91
92 background: -webkit-gradient(
93 linear,
94 left bottom,
95 left top,
96 color-stop(1, rgb(224,225,221)),
97 color-stop(0, rgb(173,175,175))
98 );
99 background: -moz-linear-gradient(
100 center bottom,
101 rgb(224,225,221) 100%,
102 rgb(173,175,175) 0%
103 );
104
105 border-color-top: black;
106 border-color-left: black;
107 border-color-right: red;
108 border-color-bottom: rgb(200, 200, 200);
109 border-style: solid;
110 border-width: .1em;
111
112 text-align: center;
113 }
114
115 .actor .tile .title {
116 font-size: 0.7em;
117 }
118
119 .modalDialog {
120 position: absolute;
121 background: white;
122 border: 3px solid red;
123 padding: 5px;
124 z-index: 99999;
125 top: 25%;
126 width: 50%;
127 left: 25%;
128 }