Fix font type (opentype -> woff) in local.css.
[blog.git] / local.css
1 /* Derived from Embedded Moose by Josh Triplett <josh@freedesktop.org>
2  * Edited by W. Trevor King <wking@tremily.us> to support:
3  *   - Sidebars
4  *   - <code>
5  *   - streamlined layout (fewer borders, etc.)
6  *   - added fun fonts
7  */
8
9 @font-face {
10         font-family: Pecita;
11         src: url("/font/Pecita-reduced.woff") format("woff");
12         /* http://pecita.eu/police-en.php */
13 }
14
15 body {
16         background: #e7e7e7;
17 }
18
19 #content {
20         background: #ffffff;
21         margin: 10px 0px;
22         padding: 10px;
23         font-family: sans-serif;
24 }
25
26 .header {
27         background: #4b6983;
28         padding: 10px;
29         color: #ffffff;
30         font-family: Pecita, sans-serif;
31 }
32
33 .header a {
34         margin-right: 1ex;
35         color: #ffffff;
36 }
37
38 .actions ul {
39         border: none;
40         padding-bottom: 0px;
41         font-family: sans-serif;
42 }
43
44 #footer {
45         border: none;
46         font-family: sans-serif;
47 }
48
49 .scaled {
50         width: 100%;
51         height: auto;
52 }
53
54 .sidebar {
55         border: none;
56         padding: 0;
57         margin-top: 10px;
58         background: #e7e7e7;
59         width: 18ex;
60 }
61
62 .sidebar ul {
63         margin-left: 1em;
64         padding: 0;
65         list-style-type: none;
66 }
67
68 .sidebar ul ul {
69         padding-left: 1em;
70 }
71
72 .sidebar .pagecloud {
73         float: none;
74         width: auto;
75         border: none;
76         background: none;
77 }
78
79 .inlinepage {
80         border: none;
81 }
82
83 code {
84         color: gray;
85         font-family: monospace;
86 }
87
88 .center {
89         margin-left: auto;
90         margin-right: auto;
91 }