summaryrefslogtreecommitdiffstats
path: root/website/src/css/standard.css
blob: a254305b70964b0b2db715897a7488b967067873 (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
/* CSS for virt-tools.org */

body {
    padding-top: 32px; /* space for menu */
    margin-left: 1em;
    font-family: Helvetica; /* Fedora users get Liberation, hopefully */
}

body > p, body > ul, body > ol, body > dl {
    margin-left: 1em;
    width: 35em;
}

li {
    padding-bottom: 0.5em;
}

/* Headings. */

h1 {
    font-size: 125%;
}

h2 {
    font-size: 115%;
}

h3, h4 {
    font-size: 105%;
}

h1, h2, h3, h4 {
    color: #222;
}

pre {
    background-color: #fcfcfc;
    /*border: 1px dotted #888;*/
    border-left: 6px solid #f0f0f0;
    padding: 5px;
    margin-left: 1em;
    font-size: 120%;
}

/* In subsections, links back to section at top and bottom. */

p#vtbacktosectiontop {
    margin-top: -12px;
    margin-left: 0px;
    font-size: 70%;
    color: #888;
}

p#vtbacktosectiontop a {
    text-decoration: none;
}

/* Menu. */

ul#vtmenu {
    position: absolute;
    left: 1em;
    top: 6px;
    width: 98%;
    padding: 0px;
    margin: 0px;
    list-style: none;
}

ul#vtmenu li {
    display: inline;
    margin-left: -3px;
    border: solid #fff 1px;
}

ul#vtmenu li.vtmenuselected a, ul#vtmenu li.vtmenuselected span {
    display: inline;
    padding: 3px 2em 3px 2em;
    background-color: #a3e8db;
}

ul#vtmenu li.vtmenunotselected a, ul#vtmenu li.vtmenunotselected span {
    display: inline;
    padding: 3px 2em 3px 2em;
    background-color: #93c5c2;
}

ul#vtmenu li a:hover {
    background-color: #a3e8db;
}

ul#vtmenu a {
    text-decoration: none;
    color: #000;
}

/* Footer (displayed on every page except the home page) */

p#vtfooter {
    width: 98%;
    font-size: 70%;
    color: #888;
}

p#vtfooter a {
    text-decoration: none;
    color: #888;
}

/* Permalinks (see templates/h2) */

a.vtpermalink {
    font-size: 70%;
    color: #ddd;
    text-decoration: none;
}

a.vtpermalink:hover {
    color: #222;
}

/* Right-float boxes, used for margin notes, examples etc. */

p.vtmarginnote {
    float: right;

    width: 16em;
    margin-top: 0px;
    margin-left: 2em;
    margin-right: 2em;
    padding-top: 0px;

    font-style: italic;
    font-size: 85%;
    color: #333;
}