In the listing, remove the silly button and hover states.
[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 a {
49 text-decoration: underline;
50 }
51
52 #error {
53 border-style: solid;
54 border-width: .15em;
55 border-color: rgb(167, 40, 26);
56 border-radius: .2em;
57 padding: .2em;
58
59 background-color: rgba(167, 40, 26, 0.1);
60 color: rgb(0, 30, 30);
61 }
62
63 .actor {
64 width: 8.3em;
65 height: 8.3em;
66 position: absolute;
67 visibility: hidden;
68
69 background-color: rgb(77, 79, 83);
70
71 border-width: .3em;
72 border-color: rgb(77, 79, 83);
73 border-style: solid;
74 }
75
76 .actor .tile {
77 width: 4em;
78 height: 4em;
79 display: inline-block;
80 margin: .1em;
81
82 background: -webkit-gradient(
83 linear,
84 left bottom,
85 left top,
86 color-stop(1, rgb(224,225,221)),
87 color-stop(0, rgb(173,175,175))
88 );
89 background: -moz-linear-gradient(
90 center bottom,
91 rgb(224,225,221) 100%,
92 rgb(173,175,175) 0%
93 );
94
95 text-align: center;
96 }
97
98 .actor .tile .title {
99 font-size: 0.7em;
100 }
101
102 .modalDialog {
103 position: absolute;
104 background: white;
105 border: 3px solid red;
106 padding: 5px;
107 z-index: 99999;
108 top: 25%;
109 width: 50%;
110 left: 25%;
111 }