Adjust whitespace in local.css to use tabs for indentation.
[mw2txt.git] / local.css
1 /* Embedded Moose local.css for use with ikiwiki
2  * Written by Josh Triplett <josh@freedesktop.org>
3  * Some ideas from the Debian lighttpd index.html page.
4  *
5  * Editted by W. Trevor King <wking@drexel.edu> to support:
6  *   - Sidebars
7  *   - <code>
8  */
9
10 body {
11         background: #e7e7e7;
12 }
13
14 #content {
15         background: #ffffff;
16         margin: 10px 0px;
17         border: 2px solid #c0c0c0;
18         padding: 10px;
19         font-family: sans-serif;
20 }
21
22 .header {
23         background: #4b6983;
24         border: 2px solid #7590ae;
25         padding: 10px;
26         color: #ffffff;
27         font-family: sans-serif;
28 }
29
30 .header a {
31         margin-right: 1ex;
32         color: #ffffff;
33         font-family: sans-serif;
34 }
35
36 .actions ul {
37         border: none;
38         padding-bottom: 0px;
39         font-family: sans-serif;
40 }
41
42 #footer {
43         border: none;
44         font-family: sans-serif;
45 }
46
47 .scaled {
48         width: 100%;
49         height: auto;
50 }
51
52 .sidebar {
53         border: solid;
54         border-width: 1px;
55         padding: 0;
56         margin-top: 15px;
57         border: 1px solid;
58         border-color: #aaa;
59         background: #eee;
60         width: 18ex;
61 }
62
63 .sidebar ul {
64         margin-left: 0;
65         padding: 0;
66         list-style-type: none;
67 }
68
69 .sidebar ul ul {
70         padding-left: 1em;
71 }
72
73 .sidebar .pagecloud {
74           float: none;
75           width: auto;
76           margin-bottom: 1em;
77 }
78
79 #sidebar {
80         border: solid;
81         border-width: 1px;
82         padding: 0ex 2ex;
83         margin-top: 15px;
84         border: 1px solid;
85         border-color: #aaa;
86         background: #eee;
87         width: 18ex;
88 }
89
90 #sidebar ul {
91         margin-left: 0;
92         padding: 0;
93         list-style-type: none;
94 }
95
96 #sidebar ul ul {
97         padding-left: 1em;
98 }
99
100 #sidebar .pagecloud {
101         float: none;
102         width: auto;
103         margin-bottom: 1em;
104 }
105
106 code {
107         color: gray;
108         font-family: monospace;
109 }