summaryrefslogtreecommitdiff
path: root/local.css
blob: d1341ad34c3413da7891a787c6dd13c8adb6b60e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/* Adapted from a stylesheet by Edward O'Connor */
/* http://edward.oconnor.cx/ */

/* Undo default HTML styling of some elements */

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  margin: 0;
  padding: 0;
  text-align: left;
}

/* Basic layout */

body {
  margin: 1em auto 0 auto;
  padding: 0;
  width: 65em;
  max-width: 98%;
  text-align: justify;
  hyphens: auto;
}

p {
  font-size: large;
  margin: 1.3125em 0;
  padding: 0;
}

li {
  font-size: large;
  padding: 0;
}

/* Typography */

/*  6pt = 0.375em
 *  7pt = 0.4375em
 *  8pt = 0.5em
 *  9pt = 0.5625em
 * 10pt = 0.625em
 * 11pt = 0.6875em
 * 12pt = 0.75em
 * 14pt = 0.875em
 * 16pt = 1em
 * 18pt = 1.125em
 * 21pt = 1.3125em
 * 24pt = 1.5em
 * 36pt = 2.25em
 * 48pt = 3em
 * 60pt = 3.75em
 * 72pt = 4.5em
 */

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 100%;
  line-height: 1.625;
}

h1 { font-size: 2.25em;   line-height: 1.167; margin-bottom: .75em}
h2 { font-size: 1.5em;    line-height: 1.75; margin-bottom: .75em}
h3 { font-size: 1.3125em; line-height: 2; margin-bottom: .75em}
h4 { font-size: 1.25em;   line-height: 1.05; }
h5 { font-size: 1.125em;  line-height: 1.167; }
h6 { font-size: 1em;      line-height: 1.3125; }

/* Color */

body {
  color: #000;
}

a:link, a:active, a:hover {
  text-decoration: none;
  color: rgb(0, 136, 204);
}

a:visited {
  text-decoration: none;
  color: rgb(0, 136, 204);
}

div.pageheader {
    padding-left: 10px;

    min-height: 60px;
    float: left;
    font-size: 0.9em;
    width: 160px;
}

.actions ul {
    height: auto;
}

div.sidebar {
    float: left;
    clear:left;
    width: 160px;

    margin: auto;
    background: none;

    padding-left: 10px;
}

#pagebody {
    border-left: 1px solid rgb(222, 222, 220);
    margin-left: 180px;
    height: 100%;
    padding-left: 20px;
    min-height: 200px;
}

.pageheader .actions ul {
    border-bottom: 0px
}

.sidebar {
    border: 0px;
}

div.sidebar a {
    border-top: 1px solid rgb(222, 222, 220);
    border-bottom: medium none;
    display: block;
}

div.sidebar span {
    border-top: 1px solid rgb(222, 222, 220);
    border-bottom: medium none;
    display: block;
    color: rgb(0, 136, 204);
}

.inlinepage {
    border: 0px;
}


#pageinfo {
    border-top: 1px solid rgb(222, 222, 220);
}