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