chiark / gitweb /
Styling and (c) notices
[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 a:active {
36   color: red
37 }
38
39 a:visited {
40   color: red
41 }
42
43 /* title bars */
44 h1 {
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 */
57 h2 {
58   font-family: helvetica,sans-serif;
59   font-weight: bold;
60   font-size: 16pt;
61   font-variant: normal;
62   display: block
63 }