chiark / gitweb /
Start a window layout chapter
[disorder] / disobedience / manual / disobedience.css
CommitLineData
a6e5c939
RK
1/*
2This file is part of DisOrder.
3Copyright (C) 2009 Richard Kettlewell
4
5This program is free software: you can redistribute it and/or modify
6it under the terms of the GNU General Public License as published by
7the Free Software Foundation, either version 3 of the License, or
8(at your option) any later version.
9
10This program is distributed in the hope that it will be useful,
11but WITHOUT ANY WARRANTY; without even the implied warranty of
12MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13GNU General Public License for more details.
14
15You should have received a copy of the GNU General Public License
16along with this program. If not, see <http://www.gnu.org/licenses/>.
17*/
18
19/* default font and colors */
20body {
21 color: black;
22 background-color: white;
23 font-family: times,serif;
24 font-weight: normal;
25 font-size: 12pt;
26 font-variant: normal
27}
28
29/* general link colors */
30a {
31 color: blue;
32 text-decoration: none
33}
34
35a:active {
36 color: red
37}
38
39a:visited {
40 color: red
41}
42
43/* title bars */
44h1 {
45 font-family: helvetica,sans-serif;
46 font-weight: bold;
47 font-size: 18pt;
48 font-variant: normal;
49 text-align: center;
50 border: 1px solid black;
51 padding: 0.2em;
52 background-color: #e0e0e0;
53 display: block
54}
55
56/* secondary titles */
57h2 {
58 font-family: helvetica,sans-serif;
59 font-weight: bold;
60 font-size: 16pt;
61 font-variant: normal;
62 display: block
63}
85c95b7f
RK
64
65td {
66 vertical-align: top;
67 padding: 8px
68}
69
70table {
71 margin-left: 2em
72}
73
74p.image {
75 text-align: center
76}