blob: 83f6b1475fe7d8c78df8d9405eeaa32d9cb6825b (
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
|
th {
font-weight: bold;
text-align: left;
}
dt {
font-weight: bold;
}
dd {
margin-top: 0.2em;
margin-bottom: 0.2em;
margin-left: 2em;
}
div.figure, div.figure p {
text-align: center;
font-weight: bold;
}
code, pre {
font-family: monospace;
tab-size: 4;
-o-tab-size: 4;
-moz-tab-size: 4;
}
pre span.Special { color: magenta; }
pre span.Identifier { color: blue; }
pre span.Type { color: blue; }
pre span.PreProc { color: magenta; }
pre span.Constant { color: black; }
pre span.Comment { color: red; }
pre span.Statement { color: darkred; }
a.permalink {
margin: 0em 0.3em;
font-size: 90%;
text-decoration: none;
visibility: hidden;
}
h1:hover > a.permalink,
h2:hover > a.permalink,
h3:hover > a.permalink,
h4:hover > a.permalink {
visibility: visible;
}
.truncated-text {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
vertical-align: top;
}
.w-250 {
width: 250px;
}
.max-w-200 {
max-width: 200px;
}
/* compatible to Bootstrap 4 for future migration */
.d-inline-block {
display: inline-block;
}
/* compatible to Bootstrap 4 for future migration */
.text-center {
text-align: center;
}
/* compatible to Bootstrap 4 for future migration */
.mr-2 {
margin-right: 8px;
}
/* compatible to Bootstrap 4 for future migration */
.ml-2 {
margin-left: 8px;
}
/* vertically center the search bar */
.navbar-grey .input-group {
margin-top: 3px;
}
/*
* .fix-links can be used to fix listgroups in text browsers
* see https://bugs.gentoo.org/show_bug.cgi?id=711286
*/
.fix-links > li {
padding: 0px;
}
.fix-links > li > a {
border: none;
}
/* vim: set ts=4 tw=80 et : */
|