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