Put the version in the footer.
[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 #error {
49 border-style: solid;
50 border-width: .15em;
51 border-color: rgb(167, 40, 26);
52 border-radius: .2em;
53 padding: .2em;
54
55 background-color: rgba(167, 40, 26, 0.1);
56 color: rgb(0, 30, 30);
57 }
58
59 .actor {
60 width: 8.3em;
61 height: 8.3em;
62 position: absolute;
63 visibility: hidden;
64
65 background-color: rgb(77, 79, 83);
66
67 border-width: .3em;
68 border-color: rgb(77, 79, 83);
69 border-style: solid;
70 }
71
72 .actor .tile {
73 width: 4em;
74 height: 4em;
75 display: inline-block;
76 margin: .1em;
77
78 background: -webkit-gradient(
79 linear,
80 left bottom,
81 left top,
82 color-stop(1, rgb(224,225,221)),
83 color-stop(0, rgb(173,175,175))
84 );
85 background: -moz-linear-gradient(
86 center bottom,
87 rgb(224,225,221) 100%,
88 rgb(173,175,175) 0%
89 );
90
91 text-align: center;
92 }
93
94 .actor .tile .title {
95 font-size: 0.7em;
96 }
97
98 /**
99 * Delete Confirmation Dialog
100 * From Google Closure Library
101 *
102 * Copyright 2009 The Closure Library Authors. All Rights Reserved.
103 *
104 * Use of this source code is governed by an Apache 2.0 License.
105 * See the COPYING file for details.
106
107 * Standard styling for goog.ui.Dialog.
108 *
109 * @author ssaviano@google.com (Steven Saviano)
110 * @author attila@google.com (Attila Bodis)
111 */
112
113 .modal-dialog {
114 background: #c1d9ff;
115 border: 1px solid #3a5774;
116 color: #000;
117 padding: 4px;
118 position: absolute;
119 }
120
121 .modal-dialog a,
122 .modal-dialog a:link,
123 .modal-dialog a:visited {
124 color: #06c;
125 cursor: pointer;
126 }
127
128 .modal-dialog-bg {
129 background: #666;
130 left: 0;
131 position: absolute;
132 top: 0;
133 }
134
135 .modal-dialog-title {
136 background: #e0edfe;
137 color: #000;
138 cursor: pointer;
139 font-size: 120%;
140 font-weight: bold;
141 padding: 8px 15px 8px 8px;
142 position: relative;
143 _zoom: 1; /* Ensures proper width in IE6 RTL. */
144 }
145
146 .modal-dialog-title-close {
147 /* Client apps may override the URL at which they serve the sprite. */
148 background: #e0edfe url(https://ssl.gstatic.com/editor/editortoolbar.png) no-repeat -528px 0;
149 cursor: default;
150 height: 15px;
151 position: absolute;
152 right: 10px;
153 top: 8px;
154 width: 15px;
155 vertical-align: middle;
156 }
157
158 .modal-dialog-buttons,
159 .modal-dialog-content {
160 background-color: #fff;
161 padding: 8px;
162 }
163
164 .goog-buttonset-default {
165 font-weight: bold;
166 }
167