-
Notifications
You must be signed in to change notification settings - Fork 4
/
wikicss.css
122 lines (96 loc) · 2.79 KB
/
wikicss.css
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
/*
{{{
#!css
*/
/* Tabellen */
/* (MediaWiki [class table], RST [über id #main], und Wiki Normal [class wiki]) */
table.table, table.table th, table.table td, #main table, #main th, #main td, th.wiki, table.wiki, td.wiki {
border: 1px solid #8CACBB;
}
table.table, #main table, table.wiki {
border-collapse: collapse;
}
table.table th, table.table td, #main th, #main td, th.wiki, td.wiki {
padding: 2px;
}
table.table th, #main th, wiki.th {
background-color: #DEE7EC; font-weight: bold;
color: #000;
}
table.code td { border:none !important; }
/* Wiki Design */
.wikipage h1, .wikipage h2, .wikipage h3, .wikipage h4, .wikipage h5, .wikipage h6 { color: #4a4d53; }
.wikipage h1 { border-bottom: 1px solid #4a4d53; }
.wikipage h2 { border-bottom: 1px solid #a5abb9; }
.wikipage h3, .wikipage h4, .wikipage h5 { text-decoration: underline; }
.wikipage h4 { font-style: italic; }
/* Code */
tt, code {
font-family: monospace;
font-size: 8pt;
background-color: #eee;
}
/* Pre */
pre {
max-height: 600px; /* max-height for standards-compliant browsers */
}
/* Links */
#banner a:link, #main a:link, #footer a:link, #main a:link em { color: #770000; }
#banner a:hover, #main a:hover, #footer a:hover, #main a:hover em { text-decoration: underline; }
#banner a:visited, #main a:visited, #footer a:visited, #main a:visited em { color: #a50000; }
/* blau
#banner a:link, #main a:link, #footer a:link, #main a:link em { color: #00a; }
#banner a:hover, #main a:hover, #footer a:hover, #main a:hover em { text-decoration: underline; }
#banner a:visited, #main a:visited, #footer a:visited, #main a:visited em { color: #00f; }
*/
/* Thumbnails */
span.thumbnail-right, span.thumbnail-left, span.thumbnail {
background-color:#eaeaea;
margin:0.5em;
}
span.thumbnail-right { margin-right:0em; }
span.thumbnail-left { margin-left:0em; }
span.thumbnail img { border: none; }
/* Screenshots */
.screenshots .images .image { border:1px dotted gray !important; }
span.thumbnail a, span.thumbnail-left a, span.thumbnail-right a {
border:none !important;
}
/* Tags */
ul.tags {
border: 1px dashed silver;
text-align: center;
padding: 0.2em;
background-color: #f5f5f5;
margin: 50px auto 0 auto;
}
ul.tags li {
display:inline;
list-style:none;
padding-left:0.2em;
padding-right:0.2em;
margin-left:0.2em;
margin-right:0.2em;
background-color: white;
}
ul.tags li.header {
font-weight: bold;
background-color: #f5f5f5;
text-align: left;
}
ul.tags li.header:after { content:":"; }
/* Inline Buttons */
div.inlinebuttons a {
border: 1px dotted #CCC;
color: #222;
font-size: 70%;
margin: 0 0.1em;
padding: 0.1em;
}
/* Tickets */
#content.ticket {
width: 75em;
}
/*
}}}
*/