Remove a few calls do document.createElement
[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 min-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: rgb(255, 208, 164);
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-top-width: 0em;
64 border-color: rgb(167, 40, 26);
65 border-radius: 0em 0em .5em .5em;
66 padding: .2em;
67
68 background-color: rgba(167, 40, 26, 0.3);
69 color: rgb(0, 30, 30);
70
71 position: absolute;
72 width: 75%;
73 top: 0px;
74 left: 0px;
75 right: 0px;
76 margin-left: auto;
77 margin-right: auto;
78 }
79
80 .actor {
81 background-color: rgb(77, 79, 83);
82
83 padding: .1em;
84
85 border-width: .1em;
86 border-color: rgb(0, 0, 0);
87 border-style: solid;
88 }
89
90 .tile {
91 padding: 0em 1em 0em 1em;
92 height: 2em;
93 display: inline-block;
94 margin: .1em;
95
96 background: -webkit-gradient(
97 linear,
98 left bottom,
99 left top,
100 color-stop(1, rgb(255,255,255)),
101 color-stop(0, rgb(173,175,175))
102 );
103 background: -moz-linear-gradient(
104 center bottom,
105 rgb(255,255,255) 100%,
106 rgb(173,175,175) 0%
107 );
108
109 border-top-color: black;
110 border-left-color: black;
111 border-right-color: rgb(100, 100, 100);
112 border-bottom-color: rgb(100, 100, 100);
113 border-style: solid;
114 border-width: .1em;
115
116 text-align: center;
117 line-height: 1.75em;
118 }
119
120 .tile .title {
121 font-size: 0.7em;
122 }
123
124 .tile:active {
125 background: -webkit-gradient(
126 linear,
127 left bottom,
128 left top,
129 color-stop(0, rgb(255,255,255)),
130 color-stop(1, rgb(173,175,175))
131 );
132 background: -moz-linear-gradient(
133 center bottom,
134 rgb(255,255,255) 0%,
135 rgb(173,175,175) 100%
136 );
137 }
138
139 .modalDialog {
140 position: absolute;
141 background: white;
142 border: 3px solid red;
143 padding: 5px;
144 z-index: 99999;
145 top: 25%;
146 width: 50%;
147 left: 25%;
148 }