|
@@ -0,0 +1,662 @@
|
|
1
|
+{% load static %}
|
|
2
|
+/*
|
|
3
|
+* Common
|
|
4
|
+*/
|
|
5
|
+html {
|
|
6
|
+ color: #0A1E2D;
|
|
7
|
+ font-family: sans-serif;
|
|
8
|
+ -ms-text-size-adjust: 100%;
|
|
9
|
+ -webkit-text-size-adjust: 100%;
|
|
10
|
+}
|
|
11
|
+
|
|
12
|
+body {
|
|
13
|
+ margin-bottom: 0;
|
|
14
|
+}
|
|
15
|
+
|
|
16
|
+.app-content {
|
|
17
|
+ padding-top: 30px;
|
|
18
|
+ padding-bottom: 30px;
|
|
19
|
+ padding-left: 10px;
|
|
20
|
+ padding-right: 10px;
|
|
21
|
+}
|
|
22
|
+
|
|
23
|
+h1 {
|
|
24
|
+ padding: 6px;
|
|
25
|
+ background-color: #f2f2f2;
|
|
26
|
+ border-left:5px solid #0A1E2D;
|
|
27
|
+ border-bottom:5px solid #0A1E2D;
|
|
28
|
+ font-size: 22px;
|
|
29
|
+}
|
|
30
|
+
|
|
31
|
+.image_bg h1 {
|
|
32
|
+ margin: 2px 0px;
|
|
33
|
+ margin-bottom: 4px;
|
|
34
|
+ border-left:0px;
|
|
35
|
+ border-bottom:0px;
|
|
36
|
+}
|
|
37
|
+
|
|
38
|
+h2 {
|
|
39
|
+ padding: 6px;
|
|
40
|
+ background-color: #f2f2f2;
|
|
41
|
+ border-left:3px solid #0A1E2D;
|
|
42
|
+ border-bottom:3px solid #0A1E2D;
|
|
43
|
+ font-size: 18px;
|
|
44
|
+}
|
|
45
|
+
|
|
46
|
+h3 {
|
|
47
|
+ padding: 6px;
|
|
48
|
+ background-color: #f2f2f2;
|
|
49
|
+ font-size: 14px;
|
|
50
|
+}
|
|
51
|
+
|
|
52
|
+ul {
|
|
53
|
+ list-style-type: square;
|
|
54
|
+ padding: 10px 30px;
|
|
55
|
+}
|
|
56
|
+
|
|
57
|
+a {
|
|
58
|
+ color: #007076;
|
|
59
|
+ font-weight: bold;
|
|
60
|
+}
|
|
61
|
+
|
|
62
|
+a:hover {
|
|
63
|
+ background: #01D0DA;
|
|
64
|
+}
|
|
65
|
+
|
|
66
|
+table {
|
|
67
|
+ opacity: 0.75;
|
|
68
|
+ background-color: #ffffff;
|
|
69
|
+ border-collapse: collapse;
|
|
70
|
+ width: 100%;
|
|
71
|
+ margin: 2px 0px;
|
|
72
|
+}
|
|
73
|
+
|
|
74
|
+td, th {
|
|
75
|
+ border: 1px solid #dddddd;
|
|
76
|
+ text-align: left;
|
|
77
|
+ padding: 8px;
|
|
78
|
+}
|
|
79
|
+
|
|
80
|
+tr:nth-child(even) {
|
|
81
|
+ background-color: #dddddd;
|
|
82
|
+}
|
|
83
|
+/*
|
|
84
|
+* Forms
|
|
85
|
+*/
|
|
86
|
+.form {
|
|
87
|
+ background-color: #f2f2f2;
|
|
88
|
+ padding: 10px 20px;
|
|
89
|
+ margin: 5px 10px;
|
|
90
|
+ margin-bottom: 10px;
|
|
91
|
+}
|
|
92
|
+
|
|
93
|
+input[type=text], select {
|
|
94
|
+ width: 100%;
|
|
95
|
+ padding: 5px 10px;
|
|
96
|
+ margin: 4px 0;
|
|
97
|
+ display: inline-block;
|
|
98
|
+ border: 1px solid #cccccc;
|
|
99
|
+ border-radius: 3px;
|
|
100
|
+ box-sizing: border-box;
|
|
101
|
+}
|
|
102
|
+
|
|
103
|
+textarea {
|
|
104
|
+ width: 100%;
|
|
105
|
+ padding: 5px 10px;
|
|
106
|
+ margin: 4px 0;
|
|
107
|
+ display: inline-block;
|
|
108
|
+ border: 1px solid #cccccc;
|
|
109
|
+ border-radius: 3px;
|
|
110
|
+ box-sizing: border-box;
|
|
111
|
+}
|
|
112
|
+
|
|
113
|
+input[type=password], select {
|
|
114
|
+ width: 100%;
|
|
115
|
+ padding: 5px 10px;
|
|
116
|
+ margin: 4px 0;
|
|
117
|
+ display: inline-block;
|
|
118
|
+ border: 1px solid #ccc;
|
|
119
|
+ border-radius: 3px;
|
|
120
|
+ box-sizing: border-box;
|
|
121
|
+}
|
|
122
|
+
|
|
123
|
+input[type=email], select {
|
|
124
|
+ width: 100%;
|
|
125
|
+ padding: 5px 10px;
|
|
126
|
+ margin: 4px 0;
|
|
127
|
+ display: inline-block;
|
|
128
|
+ border: 1px solid #cccccc;
|
|
129
|
+ border-radius: 3px;
|
|
130
|
+ box-sizing: border-box;
|
|
131
|
+}
|
|
132
|
+
|
|
133
|
+input[type=select], select {
|
|
134
|
+ width: 100%;
|
|
135
|
+ padding: 5px 10px;
|
|
136
|
+ margin: 4px 0;
|
|
137
|
+ display: inline-block;
|
|
138
|
+ border: 1px solid #cccccc;
|
|
139
|
+ border-radius: 3px;
|
|
140
|
+ box-sizing: border-box;
|
|
141
|
+}
|
|
142
|
+
|
|
143
|
+input[type=file], select {
|
|
144
|
+ width: 100%;
|
|
145
|
+ padding: 5px 10px;
|
|
146
|
+ margin: 4px 0;
|
|
147
|
+ display: inline-block;
|
|
148
|
+ border: 1px solid #ccc;
|
|
149
|
+ border-radius: 3px;
|
|
150
|
+ box-sizing: border-box;
|
|
151
|
+}
|
|
152
|
+
|
|
153
|
+p {
|
|
154
|
+ margin: 12px 0;
|
|
155
|
+}
|
|
156
|
+
|
|
157
|
+input[type=submit] {
|
|
158
|
+ width: 100%;
|
|
159
|
+ background-color: #4CAF50;
|
|
160
|
+ color: white;
|
|
161
|
+ padding: 10px 15px;
|
|
162
|
+ margin: 8px 0;
|
|
163
|
+ border: none;
|
|
164
|
+ border-radius: 3px;
|
|
165
|
+ cursor: pointer;
|
|
166
|
+}
|
|
167
|
+
|
|
168
|
+input[type=submit]:hover {
|
|
169
|
+ background-color: #45a049;
|
|
170
|
+}
|
|
171
|
+
|
|
172
|
+label {
|
|
173
|
+ font-weight: bold;
|
|
174
|
+}
|
|
175
|
+
|
|
176
|
+ul.errorlist {
|
|
177
|
+ color: red;
|
|
178
|
+}
|
|
179
|
+
|
|
180
|
+/*
|
|
181
|
+* Navigation- and Menubars
|
|
182
|
+*/
|
|
183
|
+.titlebar {
|
|
184
|
+ overflow: hidden;
|
|
185
|
+ background-color: #0A1E2D;
|
|
186
|
+ color: #01D0DA;
|
|
187
|
+ padding: 14px 16px;
|
|
188
|
+ padding-left:75px;
|
|
189
|
+ font-size: 22px;
|
|
190
|
+ max-height: 50px;
|
|
191
|
+}
|
|
192
|
+
|
|
193
|
+.page-logo {
|
|
194
|
+ display: inline;
|
|
195
|
+ position: absolute;
|
|
196
|
+ top: 0px;
|
|
197
|
+ left: 0px;
|
|
198
|
+}
|
|
199
|
+
|
|
200
|
+.page-logo:hover {
|
|
201
|
+ background-color: transparent;
|
|
202
|
+}
|
|
203
|
+
|
|
204
|
+.titlebar input[type=text] {
|
|
205
|
+ color: #3796f0;
|
|
206
|
+ font-weight: bold;
|
|
207
|
+ float: right;
|
|
208
|
+ width: 34px;
|
|
209
|
+ height: 34px;
|
|
210
|
+ border: none;
|
|
211
|
+ padding: 7px 7px;
|
|
212
|
+ padding-left: 5px;
|
|
213
|
+ padding-right: 34px;
|
|
214
|
+ border-radius: 2px;
|
|
215
|
+ margin: 0;
|
|
216
|
+ -webkit-transition: width 0.4s ease-in-out;
|
|
217
|
+ transition: width 0.4s ease-in-out;
|
|
218
|
+ background-color: #4285f4;
|
|
219
|
+ background-image: url('{% static 'themes/'|add:settings.page_theme|add:'/search.png' %}');
|
|
220
|
+ background-position: 0px 0px;
|
|
221
|
+ background-repeat: no-repeat;
|
|
222
|
+}
|
|
223
|
+
|
|
224
|
+.titlebar input[type=text]/*:focus*/ {
|
|
225
|
+ float: right;
|
|
226
|
+ display: block;
|
|
227
|
+ padding-right: 43px;
|
|
228
|
+ text-align: left;
|
|
229
|
+ width: 300px;
|
|
230
|
+ background-position: 263px 0px;
|
|
231
|
+ max-width: 100%;
|
|
232
|
+ margin: 0;
|
|
233
|
+ background-color: white;
|
|
234
|
+}
|
|
235
|
+
|
|
236
|
+/*
|
|
237
|
+* MENUBAR
|
|
238
|
+*/
|
|
239
|
+.menubar {
|
|
240
|
+ overflow: hidden;
|
|
241
|
+ background-color: #0A1E2D;
|
|
242
|
+ z-index: 50;
|
|
243
|
+}
|
|
244
|
+
|
|
245
|
+.bottombar {
|
|
246
|
+ position: fixed;
|
|
247
|
+ bottom: 0;
|
|
248
|
+ left: 0;
|
|
249
|
+ width: calc(100% - 16px);
|
|
250
|
+ margin-left: 8px;
|
|
251
|
+ max-height: 53px;
|
|
252
|
+}
|
|
253
|
+
|
|
254
|
+.bottomspace {
|
|
255
|
+ min-height: 53px;
|
|
256
|
+}
|
|
257
|
+
|
|
258
|
+.menubar a {
|
|
259
|
+ float: left;
|
|
260
|
+ font-size: 18px;
|
|
261
|
+ color: #01D0DA;
|
|
262
|
+ text-align: center;
|
|
263
|
+ padding: 4px 15px;
|
|
264
|
+ text-decoration: none;
|
|
265
|
+ font-weight: normal;
|
|
266
|
+}
|
|
267
|
+
|
|
268
|
+ .menubar-slim a {
|
|
269
|
+ padding: 2px 2px;
|
|
270
|
+ font-weight: normal;
|
|
271
|
+}
|
|
272
|
+
|
|
273
|
+.dropdown {
|
|
274
|
+ float: left;
|
|
275
|
+ overflow: hidden;
|
|
276
|
+}
|
|
277
|
+
|
|
278
|
+.dropdown .dropbtn {
|
|
279
|
+ font-size: 18px;
|
|
280
|
+ border: none;
|
|
281
|
+ outline: none;
|
|
282
|
+ color: #01D0DA;
|
|
283
|
+ padding: 4px 15px;
|
|
284
|
+ background-color: inherit;
|
|
285
|
+ font-family: inherit;
|
|
286
|
+ margin: 0;
|
|
287
|
+}
|
|
288
|
+
|
|
289
|
+.dropdown-slim .dropbtn-slim {
|
|
290
|
+ padding: 2px 2px;
|
|
291
|
+}
|
|
292
|
+
|
|
293
|
+.menubar a:hover, .dropdown:hover .dropbtn {
|
|
294
|
+ background-color: #007076;
|
|
295
|
+}
|
|
296
|
+
|
|
297
|
+.dropdown-content {
|
|
298
|
+ display: none;
|
|
299
|
+ position: absolute;
|
|
300
|
+ background-color: #f9f9f9;
|
|
301
|
+ min-width: 50px;
|
|
302
|
+ box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
|
|
303
|
+ z-index: 25;
|
|
304
|
+}
|
|
305
|
+
|
|
306
|
+.dropdown-content a {
|
|
307
|
+ float: none;
|
|
308
|
+ color: #0A1E2D;
|
|
309
|
+ padding: 12px 16px;
|
|
310
|
+ text-decoration: none;
|
|
311
|
+ display: block;
|
|
312
|
+ text-align: left;
|
|
313
|
+ font-weight: normal;
|
|
314
|
+}
|
|
315
|
+
|
|
316
|
+.dropdown-content a:hover {
|
|
317
|
+ background-color: #ddd;
|
|
318
|
+}
|
|
319
|
+
|
|
320
|
+.dropdown:hover .dropdown-content {
|
|
321
|
+ display: block;
|
|
322
|
+}
|
|
323
|
+
|
|
324
|
+/*
|
|
325
|
+* NAVIGATIONBAR
|
|
326
|
+*/
|
|
327
|
+ul.navigationbar {
|
|
328
|
+ list-style-type: none;
|
|
329
|
+ margin: 0;
|
|
330
|
+ padding: 0;
|
|
331
|
+ overflow: hidden;
|
|
332
|
+ background-color: #007076;
|
|
333
|
+ max-height: 24px;
|
|
334
|
+}
|
|
335
|
+
|
|
336
|
+li.navigationbar {
|
|
337
|
+ color: #0A1E2D;
|
|
338
|
+ float: left;
|
|
339
|
+ font-size: 16px;
|
|
340
|
+}
|
|
341
|
+
|
|
342
|
+li.navigationbar a {
|
|
343
|
+ display: block;
|
|
344
|
+ color: #0A1E2D;
|
|
345
|
+ text-align: center;
|
|
346
|
+ padding: 2px 2px;
|
|
347
|
+ text-decoration: none;
|
|
348
|
+ font-weight: normal;
|
|
349
|
+}
|
|
350
|
+
|
|
351
|
+li.navigationbar a:hover {
|
|
352
|
+ background-color: #01D0DA;
|
|
353
|
+}
|
|
354
|
+
|
|
355
|
+.active_menu {
|
|
356
|
+ background-color: #007076;
|
|
357
|
+}
|
|
358
|
+
|
|
359
|
+/* When the screen is less than (n*100+250)px wide, reduce content to be shown */
|
|
360
|
+@media screen and (max-width: calc({{actionbar|length}} * 100px + 250px)) {
|
|
361
|
+ .action_menu_hide {
|
|
362
|
+ display: none
|
|
363
|
+ }
|
|
364
|
+}
|
|
365
|
+
|
|
366
|
+/* When the screen is less than (n*100+250)px wide, reduce content to be shown */
|
|
367
|
+@media screen and (max-width: calc({{menubar|length}} * 100px + 250px)) {
|
|
368
|
+ .menu_hide {
|
|
369
|
+ display: none
|
|
370
|
+ }
|
|
371
|
+}
|
|
372
|
+
|
|
373
|
+/* When the screen is less than (n*14+75+350)px wide, reduce content to be shown */
|
|
374
|
+@media screen and (max-width: calc({{title|length}} * 15px + 75px + 350px)) {
|
|
375
|
+ .title_hide {
|
|
376
|
+ display: none
|
|
377
|
+ }
|
|
378
|
+}
|
|
379
|
+
|
|
380
|
+/*
|
|
381
|
+* Flash (Hint, Info, Error)
|
|
382
|
+*/
|
|
383
|
+.hidden {
|
|
384
|
+ display: none;
|
|
385
|
+}
|
|
386
|
+
|
|
387
|
+.fixed {
|
|
388
|
+ position: fixed;
|
|
389
|
+ top: 30px;
|
|
390
|
+ width: 100%; /* so wie flash */
|
|
391
|
+ padding-right:15px;
|
|
392
|
+ cursor: cell;
|
|
393
|
+}
|
|
394
|
+
|
|
395
|
+.flash{
|
|
396
|
+ margin: 0px;
|
|
397
|
+ display: block;
|
|
398
|
+ padding-top: 16px;
|
|
399
|
+ padding-bottom: 16px;
|
|
400
|
+ padding-left: 10px;
|
|
401
|
+ padding-right: 10px;
|
|
402
|
+ font-size: 16px;
|
|
403
|
+}
|
|
404
|
+
|
|
405
|
+.flash > a {
|
|
406
|
+ text-decoration: none;
|
|
407
|
+ font-weight: bold;
|
|
408
|
+}
|
|
409
|
+
|
|
410
|
+.flash > a:hover {
|
|
411
|
+ background: none;
|
|
412
|
+ text-decoration: underline;
|
|
413
|
+}
|
|
414
|
+
|
|
415
|
+.flash-hint {
|
|
416
|
+ color: #205b00;
|
|
417
|
+ background-color: rgba(221, 255, 221, 0.9);
|
|
418
|
+ border-left: 6px solid #205b00;
|
|
419
|
+}
|
|
420
|
+
|
|
421
|
+.flash-hint > a {
|
|
422
|
+ color: #205b00;
|
|
423
|
+}
|
|
424
|
+
|
|
425
|
+.flash-info {
|
|
426
|
+ color: #204a87;
|
|
427
|
+ background-color: rgba(212, 239, 255, 0.9);
|
|
428
|
+ border-left: 6px solid #204a87;
|
|
429
|
+}
|
|
430
|
+
|
|
431
|
+.flash-info > a {
|
|
432
|
+ color: #204a87;
|
|
433
|
+}
|
|
434
|
+
|
|
435
|
+.flash-error {
|
|
436
|
+ color: #a40000;
|
|
437
|
+ background-color: rgba(255, 221, 221, 0.9);
|
|
438
|
+ border-left: 6px solid #a40000;
|
|
439
|
+}
|
|
440
|
+
|
|
441
|
+.flash-error > a {
|
|
442
|
+ color: #a40000;
|
|
443
|
+}
|
|
444
|
+
|
|
445
|
+.close-flash {
|
|
446
|
+ background: #323232;
|
|
447
|
+ opacity:1;
|
|
448
|
+ color: #FFFFFF;
|
|
449
|
+ line-height: 25px;
|
|
450
|
+ position: absolute;
|
|
451
|
+ top: 12px;
|
|
452
|
+ right: 30px;
|
|
453
|
+ text-align: center;
|
|
454
|
+ width: 24px;
|
|
455
|
+ text-decoration: none;
|
|
456
|
+ font-weight: bold;
|
|
457
|
+ -webkit-border-radius: 12px;
|
|
458
|
+ -moz-border-radius: 12px;
|
|
459
|
+ border-radius: 12px;
|
|
460
|
+ -moz-box-shadow: 1px 1px 3px #000000;
|
|
461
|
+ -webkit-box-shadow: 1px 1px 3px #000000;
|
|
462
|
+ box-shadow: 1px 1px 3px #000000;
|
|
463
|
+}
|
|
464
|
+
|
|
465
|
+#fixed:hover .close-flash {
|
|
466
|
+ background: #a40000;
|
|
467
|
+ opacity:1;
|
|
468
|
+ color: #FFFFFF;
|
|
469
|
+}
|
|
470
|
+/*
|
|
471
|
+* Items
|
|
472
|
+*/
|
|
473
|
+div.itemname {
|
|
474
|
+ font-weight: bold;
|
|
475
|
+ padding: 2px;
|
|
476
|
+ font-size: 14px;
|
|
477
|
+ text-align: center;
|
|
478
|
+}
|
|
479
|
+
|
|
480
|
+div.datetime {
|
|
481
|
+ font-style: italic;
|
|
482
|
+ padding: 2px;
|
|
483
|
+ font-size: 12px;
|
|
484
|
+ text-align: center;
|
|
485
|
+}
|
|
486
|
+
|
|
487
|
+audio {
|
|
488
|
+ width: 100%;
|
|
489
|
+ margin: 2px 0px;
|
|
490
|
+ padding: 1px;
|
|
491
|
+ min-width: 300px;
|
|
492
|
+ display: block;
|
|
493
|
+}
|
|
494
|
+
|
|
495
|
+* {
|
|
496
|
+ box-sizing: border-box;
|
|
497
|
+}
|
|
498
|
+
|
|
499
|
+.container {
|
|
500
|
+ position: relative;
|
|
501
|
+ z-index: 1;
|
|
502
|
+}
|
|
503
|
+
|
|
504
|
+.tag {
|
|
505
|
+ border: 2px solid rgba(255,100,100,.55);
|
|
506
|
+ display:block;
|
|
507
|
+ position:absolute;
|
|
508
|
+}
|
|
509
|
+
|
|
510
|
+.tag:hover {
|
|
511
|
+ border: 3px solid rgba(255,100,100,.85);
|
|
512
|
+ background-color: transparent;
|
|
513
|
+}
|
|
514
|
+
|
|
515
|
+.image {
|
|
516
|
+ float: left;
|
|
517
|
+ margin: 6px;
|
|
518
|
+}
|
|
519
|
+
|
|
520
|
+.image_bg {
|
|
521
|
+ background: #0A1E2D;
|
|
522
|
+ padding: 6px;
|
|
523
|
+}
|
|
524
|
+
|
|
525
|
+.image_bg:hover {
|
|
526
|
+ background: #007076;
|
|
527
|
+}
|
|
528
|
+
|
|
529
|
+.webnail {
|
|
530
|
+ max-width: 90vw;
|
|
531
|
+ max-height: 90vh;
|
|
532
|
+}
|
|
533
|
+
|
|
534
|
+.clearfix:after {
|
|
535
|
+ content: "";
|
|
536
|
+ display: table;
|
|
537
|
+ clear: both;
|
|
538
|
+}
|
|
539
|
+
|
|
540
|
+/*
|
|
541
|
+* Modal Dialog
|
|
542
|
+*/
|
|
543
|
+.modalDialog {
|
|
544
|
+ position: fixed;
|
|
545
|
+ top: 0;
|
|
546
|
+ right: 0;
|
|
547
|
+ bottom: 0;
|
|
548
|
+ left: 0;
|
|
549
|
+ background: rgba(0,0,0,0.8);
|
|
550
|
+ z-index: 99999;
|
|
551
|
+ opacity:0;
|
|
552
|
+ -webkit-transition: opacity 400ms ease-in;
|
|
553
|
+ -moz-transition: opacity 400ms ease-in;
|
|
554
|
+ transition: opacity 400ms ease-in;
|
|
555
|
+ pointer-events: none;
|
|
556
|
+}
|
|
557
|
+
|
|
558
|
+.modalDialog:target {
|
|
559
|
+ opacity:1;
|
|
560
|
+ pointer-events: auto;
|
|
561
|
+}
|
|
562
|
+
|
|
563
|
+.modalDialog > div {
|
|
564
|
+ width:calc(100% - 60px);
|
|
565
|
+ height: calc(100vh - 60px);
|
|
566
|
+ overflow-y: auto;
|
|
567
|
+ position: relative;
|
|
568
|
+ margin-top: 30px;
|
|
569
|
+ margin-left: 30px;
|
|
570
|
+ padding: 5px 20px 13px 20px;
|
|
571
|
+ border-radius: 10px;
|
|
572
|
+ background: #ffffff;
|
|
573
|
+ background: -moz-linear-gradient(#ffffff, #999999);
|
|
574
|
+ background: -webkit-linear-gradient(#ffffff, #999999);
|
|
575
|
+ background: -o-linear-gradient(#ffffff, #999999);
|
|
576
|
+ opacity:0.9;
|
|
577
|
+}
|
|
578
|
+
|
|
579
|
+.close {
|
|
580
|
+ background: #606061;
|
|
581
|
+ opacity:1;
|
|
582
|
+ color: #FFFFFF;
|
|
583
|
+ line-height: 25px;
|
|
584
|
+ position: absolute;
|
|
585
|
+ right: 20px;
|
|
586
|
+ text-align: center;
|
|
587
|
+ top: 20px;
|
|
588
|
+ width: 24px;
|
|
589
|
+ text-decoration: none;
|
|
590
|
+ font-weight: bold;
|
|
591
|
+ -webkit-border-radius: 12px;
|
|
592
|
+ -moz-border-radius: 12px;
|
|
593
|
+ border-radius: 12px;
|
|
594
|
+ -moz-box-shadow: 1px 1px 3px #000000;
|
|
595
|
+ -webkit-box-shadow: 1px 1px 3px #000000;
|
|
596
|
+ box-shadow: 1px 1px 3px #000000;
|
|
597
|
+}
|
|
598
|
+
|
|
599
|
+.close:hover {
|
|
600
|
+ background: #007076;
|
|
601
|
+ opacity:1;
|
|
602
|
+ color: #FFFFFF;
|
|
603
|
+}
|
|
604
|
+
|
|
605
|
+.modal-info {
|
|
606
|
+ margin: 0px;
|
|
607
|
+ display: block;
|
|
608
|
+ padding-top: 16px;
|
|
609
|
+ padding-bottom: 16px;
|
|
610
|
+ padding-left: 10px;
|
|
611
|
+ padding-right: 10px;
|
|
612
|
+ font-size: 16px;
|
|
613
|
+ color: #204a87;
|
|
614
|
+ background-color: #daefff;
|
|
615
|
+ border-left: 6px solid #204a87;
|
|
616
|
+}
|
|
617
|
+
|
|
618
|
+.modal-info > a {
|
|
619
|
+ text-decoration: none;
|
|
620
|
+ font-weight: bold;
|
|
621
|
+ color: #204a87;
|
|
622
|
+}
|
|
623
|
+
|
|
624
|
+.modal-info > a:hover {
|
|
625
|
+ background: none;
|
|
626
|
+ text-decoration: underline;
|
|
627
|
+}
|
|
628
|
+.image_modal {
|
|
629
|
+ display: flex;
|
|
630
|
+ vertical-align: middle;
|
|
631
|
+}
|
|
632
|
+
|
|
633
|
+.webnail_modal {
|
|
634
|
+ display: block;
|
|
635
|
+ max-width: 100%;
|
|
636
|
+ max-height: 100%;
|
|
637
|
+ margin: auto;
|
|
638
|
+ zoom: 2;
|
|
639
|
+}
|
|
640
|
+
|
|
641
|
+/*
|
|
642
|
+ * Sticky Header
|
|
643
|
+ */
|
|
644
|
+/* Page content */
|
|
645
|
+.content {
|
|
646
|
+}
|
|
647
|
+
|
|
648
|
+/* The sticky class is added to the header with JS when it reaches its scroll position */
|
|
649
|
+.sticky {
|
|
650
|
+ position: fixed;
|
|
651
|
+ top: 0;
|
|
652
|
+ width: calc(100% - 16px);
|
|
653
|
+}
|
|
654
|
+
|
|
655
|
+.sticky-submenu {
|
|
656
|
+ position: fixed;
|
|
657
|
+}
|
|
658
|
+
|
|
659
|
+/* Add some top padding to the page content to prevent sudden quick movement (as the header gets a new position at the top of the page (position:fixed and top:0) */
|
|
660
|
+.sticky + .content {
|
|
661
|
+ padding-top: 30px;
|
|
662
|
+}
|