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
145
146
147
148
149
150
151
152
153
154
155
156
|
/* This file contains overrides for mediawiki stuff we don't want for Tyrian */
h1, h2, h3, h4, h5, h6 {
padding-top: 0px;
border-bottom: none;
}
.uls-menu {
z-index: 2000 !important;
}
a.get-gentoo {
color: white !important;
}
nav#wiki-actions {
margin-top: -20px;
background-color: #e1e1e1;
border: none;
}
nav#wiki-actions ul.nav li.active {
background-color: #fafafa;
font-weight: bold;
}
nav#wiki-actions ul.nav li.new a:link {
color: #ba0000;
}
nav#wiki-actions ul.nav li.new a:visited {
color: #a55858;
}
nav li {
margin-bottom: 0;
}
#f-list {
list-style-type: none;
padding: 0;
margin: 0;
margin-bottom: 3em;
}
#privacy, #about, #disclaimer {
float: left;
padding-right: 2em;
}
div.footericons {
text-align: right;
}
div.footericons div {
display: inline-block;
}
body.page-Main_Page h1#firstHeading {
display: none;
}
div.jumbotron h1 {
font-size: 25pt;
}
body.page-Main_Page div.jumbotron img {
margin-top: -2em;
}
.mw-body-content {
padding-bottom: 10px;
}
body.skin-tyrian .catlinks {
margin-top: 8px;
margin-bottom: 4px;
padding: 4px;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.15);
background-color: #eee;
-webkit-border-radius: 4px;
-moz-border-radius: 4px;
border-radius: 4px;
}
div.box-caption {
padding-top: 4.25px;
padding-right: 8.5px;
padding-bottom: 6.25px;
padding-left: 8.5px;
background-color: #eeeeee;
border: 1px solid #ccc;
border: 1px solid rgba(0, 0, 0, 0.15);
border-bottom: none;
-webkit-border-radius: 4px 4px 0 0;
-moz-border-radius: 4px 4px 0 0;
border-radius: 4px 4px 0 0;
}
pre.captioned {
border-top: none;
-webkit-border-radius: 0 0 4px 4px;
-moz-border-radius: 0 0 4px 4px;
border-radius: 0 0 4px 4px;
}
.mw-code {
font-size: 1em !important;
}
pre > pre {
font-size: 1em !important;
margin: 0 !important;
}
.white {
color: #fff !important;
}
.skin-tyrian code {
color: #3E355A;
background-color: #eee;
}
.cmd-box {
background-color: #333;
color: white;
border-radius: 4px;
padding: 4px;
margin-bottom: 10px;
}
.cmd-box code {
border: none;
background: none;
color: white;
}
.cmd-box .tripleclick-separator {
display: inline-block;
height: 0;
width: 0;
}
.cmd-box pre {
background: none;
border: none;
color: white;
margin: 0;
padding: 2px 4px;
}
.cmd-box a, .cmd-box a.external, .cmd-box a.external:visited {
color: white;
}
|