Display the actor panel without using the zippy.
[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-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
75 background-color: rgb(77, 79, 83);
76
77 padding: .1em;
78
79 border-width: .1em;
80 border-color: rgb(0, 0, 0);
81 border-style: solid;
82 }
83
84 .actor .tile {
85 width: 4em;
86 height: 4em;
87 display: inline-block;
88 margin: .1em;
89
90 background: -webkit-gradient(
91 linear,
92 left bottom,
93 left top,
94 color-stop(1, rgb(255,255,255)),
95 color-stop(0, rgb(173,175,175))
96 );
97 background: -moz-linear-gradient(
98 center bottom,
99 rgb(255,255,255) 100%,
100 rgb(173,175,175) 0%
101 );
102
103 border-top-color: black;
104 border-left-color: black;
105 border-right-color: rgb(100, 100, 100);
106 border-bottom-color: rgb(100, 100, 100);
107 border-style: solid;
108 border-width: .1em;
109
110 text-align: center;
111 }
112
113 .actor .tile .title {
114 font-size: 0.7em;
115 }
116
117 .actor .tile:active {
118 background: -webkit-gradient(
119 linear,
120 left bottom,
121 left top,
122 color-stop(0, rgb(255,255,255)),
123 color-stop(1, rgb(173,175,175))
124 );
125 background: -moz-linear-gradient(
126 center bottom,
127 rgb(255,255,255) 0%,
128 rgb(173,175,175) 100%
129 );
130 }
131
132 .modalDialog {
133 position: absolute;
134 background: white;
135 border: 3px solid red;
136 padding: 5px;
137 z-index: 99999;
138 top: 25%;
139 width: 50%;
140 left: 25%;
141 }