summaryrefslogtreecommitdiffstats
path: root/MCServer/webadmin/files/style.css
blob: 211f9f9a3e3c3700cd3df3b2b8376610249f0326 (plain) (blame)
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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
body, html
{
	font-family: "Open Sans";
	padding: 0;
	margin: 0;
	font-weight: 400;
	background-color: #fbe9e7;
	color: rgba(0, 0, 0, 0.87);
}

.light { font-weight: 300; }
.bold { font-weight: 600; }

#wrapper
{
	background-color: #ff5722;
	margin: 40px auto;
	width: 99%;
	max-width: 1200px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.15);
	color: rgba(0, 0, 0, 0.87);
}

.title
{
	font-size: 30pt;
	padding: 10px 40px;
	text-decoration: none;
	color: white;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3);
	display: block;
}

#sidebar
{
	float: left;
	width: 20%;
}

.sideNav
{
	list-style: none;
	background-color: #fafafa;
	margin: 20px 0;
	padding: 5px 0;
	width: 100%;
	box-shadow: 1px 0px 10px rgba(0, 0, 0, 0.2);
}

.sideNav li
{
	padding: 10px;
	color: rgba(0, 0, 0, 0.54);
}

.sideNav li.link
{
	padding-left: 30px;
}

.sideNav li.link a
{
	text-decoration: none;
	color: rgba(0, 0, 0, 0.87);
}

#container
{
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #f5f5f5;
}

#main
{
	float: right;
	width: 80%;
	padding: 0 15px 20px 15px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.clear
{
	clear: both;
}

table
{
	width: 100%;
	border-collapse: collapse;
}

table td
{
	padding: 5px;
}

table th
{
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
	padding: 5px;
	text-align: center;
}

table tr:nth-child(odd)
{
	background-color: rgba(0, 0, 0, 0.015);
}

p
{
	margin: 8px 0;
	padding: 8px 3px;
}

a
{
	text-decoration: none;
	color: #0277bd;
	-webkit-transition: color 0.1s linear;
	-moz-transition: color 0.1s linear;
	transition: color 0.1s linear;
}

a:hover
{
	color: #01579b;
}

.welcome-msg
{
	color: rgba(0, 0, 0, 0.54);
}

.username
{
	text-transform: capitalize;
	color: rgba(0, 0, 0, 0.87);
}

a:hover
{
	color: black;
}

input, select
{
	padding: 8px;
}

form
{
	padding: 4px;
}

.info input[type="submit"], .info button, .info input[type="button"],
.warn input[type="submit"], .warn button, .warn input[type="button"],
.err input[type="submit"], .err button, .err input[type="button"]
{
	float: right;
}

.err
{
	color: white;
	display: block;
	background-color: #e51c23 !important;
	padding: 15px;
	line-height: 30px;
	min-height: 30px;
}

.err:before
{
	content: "ERROR: ";
}

.warn
{
	color: white;
	display: block;
	background-color: #ff5722 !important;
	padding: 15px;
	line-height: 30px;
	min-height: 30px;
}

.warn:before
{
	content: "WARNING: ";
}

.info
{
	color: white;
	display: block;
	background-color: #5677fc !important;
	padding: 15px;
	line-height: 30px;
	min-height: 30px;
}

.info:before
{
	content: "INFORMATION: ";
}

#footer .fleft
{
	float: left;
}

#footer .fright
{
	float: right;
	text-align: right;
}

#footer
{
	margin: 0;
	padding: 10px;
	font-size: 9pt;
	color: rgba(255, 255, 255, 0.8);
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2) inset;
}

#footer a
{
	text-transform: none;
	color: white;
}

input[type="submit"], button, input[type="button"]
{
	background-color: #ffc107;
	padding: 8px 15px 8px 15px;
	margin: 0 2px;
	display: inline-block;
	text-align: center;
	color: black;
	box-shadow: 0px 2px 3px rgba(0,0,0,0.2);
	border: none;
	outline: none;
	cursor: pointer;
}

input[type="submit"]:hover, button:hover, input[type="button"]:hover
{
	background-color: #ffca28;
}

input[type="submit"]:active, button:active, input[type="button"]:active
{
	background-color: #ffd54f;
	-webkit-transform: translateY(1px);
	   -moz-transform: translateY(1px);
			transform: translateY(1px);
}

hr
{
	border: none;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.12);
}

h4
{
	padding-bottom: 10px;
	margin-bottom: 12px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}


/**** PAGE SPECIFIC CSS ****/

/* remove the * for disabling: */

.page-core-server-settings table td
{
	text-align: center;
	width: 25%;
}

.page-core-server-settings.no-param table td:nth-child(1) a,
.page-core-server-settings.param-tab-general table td:nth-child(1) a
{
	font-weight: 600;
	color: rgba(0, 0, 0, 0.87);
}

.page-core-server-settings.param-tab-monsters table td:nth-child(2) a
{
	font-weight: 600;
	color: rgba(0, 0, 0, 0.87);
}

.page-core-server-settings.param-tab-worlds table td:nth-child(3) a
{
	font-weight: 600;
	color: rgba(0, 0, 0, 0.87);
}

.page-core-server-settings.param-tab-world table td:nth-child(4) a
{
	font-weight: 600;
	color: rgba(0, 0, 0, 0.87);
}

.page-core-permissions form table tr,
.page-core-permissions form table td,
.page-core-permissions form table th
{
	border: none;
	background-color: transparent;
}

.page-core-permissions form table tr:nth-child(1) th
{
	width: 35%;
}

.page-core-permissions form table tr:nth-child(1) td
{
	width: 65%;
}

.page-core-permissions form table td input
{
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin: 0;
}

#ChatDiv
{
	margin-bottom: 10px;
}

#ChatMessage
{
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

/**/