Don't return a null slice from server.ListPath, return an empty one
[armadillo.git] / frontend / mobile.css
1 /*
2 * Armadillo File Manager
3 * Copyright (c) 2012, 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 padding: 0;
12 }
13
14 .tile {
15 display: block;
16
17 line-height: 2em;
18 }
19
20 .tile .title {
21 font-size: 1.0em;
22 }
23
24 .actor select:first-child {
25 margin-top: 2em;
26 }
27
28 .actor select {
29 display: block;
30 width: 100%;
31 }
32
33 .actor input[type="text"] {
34 display: block;
35 box-sizing: border-box;
36 width: 100%;
37 }
38
39 button {
40 width: 50%;
41 padding: 1em;
42
43 font-size: 1.0em;
44
45 border: .1em solid black;
46
47 background: -webkit-gradient(
48 linear,
49 left bottom,
50 left top,
51 color-stop(0, rgb(99,95,103)),
52 color-stop(1, rgb(255,255,255))
53 );
54 background: -moz-linear-gradient(
55 center bottom,
56 rgb(99,95,103) 100%,
57 rgb(255,255,255) 0%
58 );
59 }