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