blob: f24610d3d1ecb0bcadff808836a613861b513339 (
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
|
/**
* Toffanin Mauro - toffanin.mauro@gmail.com
* v0.1 - 07.01.2009
*/
/**
* COLORS TABLE:
* white background: #F9F9F9;
* black foreground: #1A1A1A;
* blue: #0F83DB;
*/
/** General HTML Elements **/
body {
background-color:#F9F9F9;
color:#1A1A1A;
max-width:730px;
margin:auto;
margin-top:40px;
margin-bottom:40px;
/* border:1px solid red;*/
}
hr {
margin:0;
padding:0;
border:0;
border-bottom:4px solid #1A1A1A;
}
p {
text-align:justify;
text-indent:30px;
}
a {
/* Resetting borders from the DocBook template */
text-decoration:none;
border:0;
border-bottom:1px dotted #0F83DB;
color:#0F83DB;
}
/** General HTML Classes **/
.legalnotice {
border-top:1px solid #1A1A1A;
border-bottom:1px solid #1A1A1A;
}
.chapter {
}
.section {
}
div.toc > dl > dd {
margin-bottom:10px;
}
div.toc > p {
text-indent:0px;
}
div.chapter > div.toc {
border:2px solid #1A1A1A;
padding:10px;
padding-left:30px; /* same as the <p> indentation */
-moz-border-radius:8px;
-webkit-border-radius:8px;
-khtml-border-radius:8px;
border-radius:8px; /* leave this CSS tag always as last */
}
div.chapter > div.toc > dl > dt > span.section {
/* margin-left:20px; /* same as the <p> indentation */
/* border:1px solid red;*/
}
.programlisting {
background-color:#F8F8F8;
border:2px solid #1A1A1A;
border-left:16px solid #1A1A1A;
padding:5px;
-moz-border-radius:8px;
-webkit-border-radius:8px;
-khtml-border-radius:8px;
border-radius:8px; /* leave this CSS tag always as last */
}
.programlisting > a {
color:#333333;
}
.navheader {
height:60px;
/* border:1px solid red;*/
}
h2.title {
border-bottom:2px solid #1A1A1A;
}
|