-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
207 lines (170 loc) · 3.14 KB
/
stylesheet.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
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
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
* {
margin: 0;
padding: 0;
}
body {
background: #C9C9C9;
font-family: sans-serif;
color: #212121;
margin: 0 auto;
width: 600px;
}
header {
padding: 40px 0;
text-align: center;
text-shadow: 1px 1px 0 white;
font-family: serif;
background: #bbb;
border-left: 1px solid #888;
border-right: 1px solid #888;
border-bottom: 1px solid #ccc;
}
h1 a {
color: inherit;
}
h1 a:hover {
color: inherit;
}
section {
background: #bbb;
border-left: 1px solid #888;
border-right: 1px solid #888;
}
article {
border-bottom: 1px solid #ccc;
border-top: 1px solid #aaa;
padding: 10px 20px;
}
#homepage article:hover {
background: #a8a8a8;
}
h2 {
margin: 0 0 10px 0;
}
a {
color: #a53100;
-moz-text-decoration-style: dashed;
}
.dl_readonly {
background: url('imgs/read.png') no-repeat left center;
padding: 2px 0 2px 20px;
margin: 0 10px 0 0;
}
.dl_editable {
background: url('imgs/edit.png') no-repeat left center;
padding: 2px 0 2px 20px;
margin: 0 10px 0 0;
}
.upload {
background: url('imgs/upload.png') no-repeat left center;
padding: 2px 0 2px 20px;
margin: 0 10px 0 0;
}
.database {
background: url('imgs/database.png') no-repeat left center;
padding: 2px 0 2px 20px;
margin: 0 10px 0 0;
}
.database_export {
background: url('imgs/database_export.png') no-repeat left center;
padding: 2px 0 2px 20px;
margin: 0 10px 0 0;
}
a:hover {
color: #ef6428;
}
footer {
padding: 10px 0;
text-align: center;
background: #bbb;
border-left: 1px solid #888;
border-right: 1px solid #888;
border-top: 1px solid #aaa;
font-weight: lighter;
}
/* Files Plugin */
.legend {
font-size: small;
font-style: italic;
margin: 0 0 10px 0;
}
.warning {
font-size: small;
color: #880000;
}
.uppercase {
text-transform: uppercase;
}
.filename {
color: black;
font-weight: bold;
}
.error {
margin: 0 0 0 10px;
color: red;
font-size: small;
font-weight: bold;
}
.ok {
margin: 0 0 0 10px;
color: green;
font-size: small;
font-weight: bold;
}
/* Problem Report Plugin */
.noborder, table {
border: 0;
}
td {
border: 1px solid #888;
padding: 4px;
border-radius: 3px;
vertical-align: top;
}
pre {
white-space: pre-wrap;
}
#list_view_ok td {
vertical-align: middle;
border: 1px solid #888;
padding: 4px;
border-radius: 0px;
line-height: 16px;
}
#list_view_ok td a img {
vertical-align: middle;
}
#list_view_ok th {
border: 1px solid #888;
padding: 2px;
font-weight: bold;
font-size: small;
background: #999;
}
#list_view_ok tr:hover {
background: #a8a8a8;
}
#list_view_ok table {
border-collapse: collapse;
}
.title {
margin: -4px -4px 4px -4px;
padding: 2px;
font-weight: bold;
font-size: small;
background: #999;
}
#nav_buttons {
float: right;
}
#edit_ok textarea, #edit_ok input, #edit_ok select, #new_ok textarea, #new_ok input, #new_ok select {
width: 100%;
}
#edit_ok textarea, #edit_ok input, #new_ok textarea, #new_ok input {
margin: 0 -3px;
}
.mono {
font-family: monospace;
font-size: 80%;
font-weight: normal;
}