blob: 02d152cfed3d62511f3ac659d3bc354fd8c9117d (
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
|
/* basic typography stuff */
html {
font-size: 100%;
line-height: 1.4;
font-family: 'PT Sans', sans-serif;
text-rendering: optimizeLegibility;
-moz-hyphens: auto;
-webkit-hyphens: auto;
hyphens: auto;
text-align: justify;
color: #444;
background-image: url(bg.png);
}
.wrapper {
max-width: 40em;
margin: 0 auto;
}
a:link, a:visited {
/* tango sky blue 3 */
color: #204a87;
}
div.sourceCode {
overflow: visible;
}
pre.sourceCode {
margin-left: 0;
margin-right: 0;
/* tango aluminium 1 */
background-color: #eeeeec;
padding: 1em;
/* tango aluminium 2 */
border: 0.1em solid #d3d7cf;
tab-size: 4;
}
pre code {
background-color: transparent;
}
.todo {
border: 0.1em solid #edd400;
background-color: #fce94f;
padding: 0em 1em;
border-radius: 0.66em;
}
.nodoc {
display: none;
}
|