]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - inc/shaarli.css
Handle errors raised by plugins in template. fixes #370
[github/shaarli/Shaarli.git] / inc / shaarli.css
CommitLineData
a6e0134d 1/* Cascading Stylesheet for Shaarli - https://github.com/shaarli/Shaarli */
45034273 2
32c8dee3
V
3body {
4 font-family: "Trebuchet MS",Verdana,Arial,Helvetica,sans-serif;
5 font-size: 10pt;
6 background-color: #ffffff;
7 word-wrap: break-word;
8}
eeb0fe33 9
45034273 10input, textarea {
9308d39f
V
11 background-color: #dedede;
12 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dedede), to(#ffffff));
13 background: -webkit-linear-gradient(#dedede, #ffffff);
14 background: -moz-linear-gradient(#dedede, #ffffff);
15 background: -ms-linear-gradient(#dedede, #ffffff);
16 background: -o-linear-gradient(#dedede, #ffffff);
17 background: linear-gradient(#dedede, #ffffff);
18 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
eeb0fe33 19 padding: 5px;
4f8063b6 20 border-radius: 3px 3px 3px 3px;
9308d39f 21 border: none;
eeb0fe33 22 color: #000;
9308d39f 23}
45034273 24
d741c9fc 25a {
eeb0fe33 26 text-decoration: none;
d741c9fc
FE
27}
28
32c8dee3
V
29h1 {
30 font-size: 20pt;
31 font-weight: bold;
32 font-style: italic;
33 margin-bottom: 20px;
34}
45034273
SS
35
36/* Buttons */
37.bigbutton {
38 background-color: #c0c0c0;
9308d39f
V
39 background: -moz-linear-gradient(#c0c0c0, #ffffff) repeat scroll 0 0 transparent;
40 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#c0c0c0), to(#ffffff));
41 background: -webkit-linear-gradient(#c0c0c0, #ffffff);
42 background: -ms-linear-gradient(#c0c0c0, #ffffff);
43 background: -o-linear-gradient(#c0c0c0, #ffffff);
44 background: linear-gradient(#c0c0c0, #ffffff);
45034273
SS
45 border-radius: 3px 3px 3px 3px;
46 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
47 cursor: pointer;
48 height: 24px;
49 margin-left: 5px;
50 padding: 0 5px;
9308d39f 51 color: #606060;
eeb0fe33
V
52 border-style: outset;
53 border-width: 1px;
9308d39f 54}
45034273 55
45034273
SS
56.smallbutton {
57 background-color: #c0c0c0;
9308d39f
V
58 background: -moz-linear-gradient(#c0c0c0, #ffffff) repeat scroll 0 0 transparent;
59 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#c0c0c0), to(#ffffff));
60 background: -webkit-linear-gradient(#c0c0c0, #ffffff);
61 background: -ms-linear-gradient(#c0c0c0, #ffffff);
62 background: -o-linear-gradient(#c0c0c0, #ffffff);
63 background: linear-gradient(#c0c0c0, #ffffff);
45034273
SS
64 border-radius: 3px 3px 3px 3px;
65 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
66 cursor: pointer;
67 height: 20px;
68 margin-left: 5px;
69 padding: 0 5px;
9308d39f 70 color: #606060;
eeb0fe33
V
71 border-style: outset;
72 border-width: 1px;
9308d39f 73}
45034273 74
b2877611 75/* Small tab on the left of each link with edit/delete buttons. */
32c8dee3
V
76.button_edit, .button_delete {
77 border-radius: 0;
78 box-shadow: none;
79 border-style: none;
80 border-width: 0;
81 padding: 0;
82 background: none;
83}
6e70d655 84
d741c9fc 85.linkeditbuttons {
eeb0fe33 86 position: absolute;
610bf418 87 left: 2px;
eeb0fe33 88 padding: 4px 2px 2px 2px;
eeb0fe33
V
89
90 -webkit-border-radius: 0px 6px 6px 0px;
91 -moz-border-radius: 0px 6px 6px 0px;
92 -o-border-radius: 0px 6px 6px 0px;
93 -ms-border-radius: 0px 6px 6px 0px;
94 border-radius: 0px 6px 6px 0px;
b2877611 95}
45034273 96
eeb0fe33 97#pageheader #logo {
9308d39f
V
98 background-image: url('../images/logo.png');
99 background-repeat: no-repeat;
eeb0fe33
V
100 float: left;
101 margin: 0 10px 0 10px;
102 width: 105px;
103 height: 55px;
104 cursor: pointer;
45034273
SS
105}
106
610bf418
MJ
107#pageheader #menu {
108 width: 100%;
109}
110
111#pageheader #menu ul {
112 margin: auto;
113 padding: 7px 0px 0px 0px;
114 float: none;
115}
116
117#pageheader #menu ul li {
118 list-style: none;
119 display: inline;
120 position: relative;
121 box-sizing: border-box;
122}
123
124#pageheader a {
125 background-color: #333333;
126 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#333333), to(#000000));
127 background: -webkit-linear-gradient(#333333, #000000);
128 background: -moz-linear-gradient(#333333, #000000);
129 background: -ms-linear-gradient(#333333, #000000);
130 background: -o-linear-gradient(#333333, #000000);
131 background: linear-gradient(#333333, #000000);
132 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
133 padding: 5px;
4f8063b6 134 border-radius: 3px 3px 3px 3px;
610bf418
MJ
135 margin: 10px 3px 3px 3px;
136 color: #A2DD42;
137 text-decoration: none;
138 line-height: 2.5;
139 white-space: nowrap;
140}
141
c133612f
V
142#pageheader #linkcount {
143 float: right;
144 font-style: italic;
145 color: #bbb;
146 text-align: right;
147 padding-right: 5px;
610bf418 148 margin: 3px 3px 0px 0px;
c133612f
V
149}
150
eeb0fe33 151#pageheader {
45034273 152 background-color: #333333;
9308d39f
V
153 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#333333), to(#111111));
154 background: -webkit-linear-gradient(#333333, #111111);
155 background: -moz-linear-gradient(#333333, #111111);
156 background: -ms-linear-gradient(#333333, #111111);
157 background: -o-linear-gradient(#333333, #111111);
158 background: linear-gradient(#333333, #111111);
45034273 159 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
eeb0fe33
V
160 width: auto;
161 padding: 0 10px 5px 10px;
9308d39f 162 margin: auto;
45034273
SS
163}
164
c133612f
V
165#pageheader .search {
166 width: 100%;
167 white-space: nowrap;
168}
169
eeb0fe33
V
170#toolsdiv a {
171 clear: both;
45034273 172}
6e70d655 173
c133612f
V
174#toolsdiv #bookmark {
175 clear: none;
176}
177
eeb0fe33
V
178#toolsdiv a span {
179 color: #ffffff;
45034273 180}
6e70d655 181
eeb0fe33 182.linksperpage, .tagfilter, .searchform, .addform {
9308d39f
V
183 background-color: #dedede;
184 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dedede), to(#ffffff));
185 background: -webkit-linear-gradient(#dedede, #ffffff);
186 background: -moz-linear-gradient(#dedede, #ffffff);
187 background: -ms-linear-gradient(#dedede, #ffffff);
188 background: -o-linear-gradient(#dedede, #ffffff);
189 background: linear-gradient(#dedede, #ffffff);
eeb0fe33 190 display: inline;
9308d39f 191 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
eeb0fe33 192 padding: 5px;
9308d39f 193 border: none;
4f8063b6 194 border-radius: 3px 3px 3px 3px;
eeb0fe33
V
195 margin: 10px 3px 3px 3px;
196 color: #cecece;
45034273
SS
197}
198
eeb0fe33 199.linksperpage {
9308d39f 200 box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
eeb0fe33 201 padding: 3px;
45034273
SS
202}
203
eeb0fe33
V
204.linksperpage input, .tagfilter input, .searchform input, .addform input {
205 border: none;
206 color: #606060;
207 background: none;
208 box-shadow: none;
209 padding: 5px;
45034273
SS
210}
211
eeb0fe33
V
212.linksperpage input {
213 padding: 0;
45034273
SS
214}
215
c133612f
V
216.searchform #searchform_value {
217 width: 30%;
218}
219
220.tagfilter {
221 margin-left:24px;
222}
223
41145f70 224.tagfilter div.awesomplete {
225 width: 15%;
226}
227
c133612f 228.tagfilter #tagfilter_value {
65d62517
A
229 display: inline;
230}
231
232.tagfilter li {
233 color: black;
c133612f
V
234}
235
eeb0fe33 236.tagfilter input.bigbutton, .searchform input.bigbutton, .addform input.bigbutton {
45034273 237 background-color: #dedede;
9308d39f
V
238 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dedede), to(#ffffff));
239 background: -webkit-linear-gradient(#dedede, #ffffff);
240 background: -moz-linear-gradient(#dedede, #ffffff);
241 background: -ms-linear-gradient(#dedede, #ffffff);
242 background: -o-linear-gradient(#dedede, #ffffff);
243 background: linear-gradient(#dedede, #ffffff);
244 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
eeb0fe33
V
245 padding: 0 5px 0 5px;
246 margin: 5px 0 5px 0;
247 height: 20px;
4f8063b6 248 border-radius: 3px 3px 3px 3px;
eeb0fe33 249 cursor: pointer;
45034273
SS
250}
251
32c8dee3
V
252#shaarli_title {
253 font-weight: bold;
254 font-style: italic;
255 margin-top: 0;
256}
6e70d655 257
32c8dee3
V
258#shaarli_title a {
259 color: #fff !important;
260}
261
262#pageheader a:visited {
263 color: #98C943;
264 text-decoration: none;
265}
6e70d655 266
32c8dee3
V
267#pageheader a:hover {
268 color: #FFFFC9;
269 text-decoration: none;
270}
6e70d655 271
32c8dee3
V
272#pageheader a:active {
273 color: #bbb;
274 text-decoration: none;
275}
6e70d655 276
32c8dee3
V
277#searchcriteria {
278 padding: 4px 0px 5px 5px;
279 font-weight: bold;
280}
6e70d655 281
32c8dee3
V
282.paging {
283 padding: 5px;
284 background-color: #777;
285 color: #ccc;
286 text-align: center;
287 clear: both;
288}
6e70d655 289
32c8dee3
V
290.paging a:link {
291 color: #ccc;
292 text-decoration: none;
293}
6e70d655 294
32c8dee3
V
295.paging a:visited {
296 color: #ccc;
297}
6e70d655 298
32c8dee3
V
299.paging a:hover {
300 color: #FFFFC9;
301}
6e70d655 302
32c8dee3
V
303.paging a:active {
304 color: #fff;
305}
6e70d655 306
8079dfd1 307.paging_privatelinks {
32c8dee3
V
308 float: left;
309}
6e70d655 310
8079dfd1 311.paging_linksperpage {
32c8dee3
V
312 float: right;
313 padding-right: 5px;
610bf418 314 margin: 0px 10px 2px 0px;
32c8dee3 315}
6e70d655 316
8079dfd1 317.paging_linksperpage form.linksperpage {
c133612f
V
318 display: inline;
319}
320
8079dfd1 321.paging_linksperpage form.linksperpage input {
c133612f
V
322 height: 15px;
323}
324
8079dfd1 325.paging_current {
32c8dee3
V
326 display: inline;
327 color: #fff;
328 padding: 0 20 0 20;
329}
6e70d655 330
8079dfd1 331.paging_older {
32c8dee3
V
332 margin-right: 15px;
333}
6e70d655 334
8079dfd1 335.paging_newer {
32c8dee3
V
336 margin-left: 15px;
337}
338
339#headerform {
340 color: #ffffff;
341 padding: 5px 5px 5px 5px;
342 clear: both;
343}
6e70d655 344
c133612f
V
345#headerform input.linkurl {
346 width: 50%;
c981b4d1 347 font-size: inherit;
c133612f
V
348}
349
25c46408 350#headerform label {
38eb1e77 351 cursor: pointer;
25c46408 352 margin-right: 10px;
353}
354
355#headerform label[for=longlastingsession] {
356 display: block;
357 width: 100%;
358 margin-top: 5px;
359}
360
32c8dee3
V
361#toolsdiv {
362 color: #ffffff;
363 padding: 5px 5px 5px 5px;
364 clear: left;
365}
6e70d655 366
32c8dee3
V
367#uploaddiv {
368 color: #ffffff;
369 padding: 5px 5px 5px 5px;
370 clear: left;
371}
6e70d655 372
32c8dee3
V
373#editlinkform {
374 height: 100%;
32c8dee3
V
375 padding: 5px 5px 5px 15px;
376 width: 80%;
377 clear: left;
378}
6e70d655 379
bdd1715b 380#editlinkform label {
41145f70 381 cursor: pointer;
bdd1715b
A
382 color: #ffffff;
383}
384
c133612f
V
385#editlinkform textarea, #editlinkform .lf_input {
386 width: 100%;
387}
388
45034273 389#linklist li {
32c8dee3
V
390 padding: 4px 10px 15px 20px;
391 border-top: 1px solid #bbb;
392 clear: both;
45034273 393 background-color: #F2F2F2;
9308d39f
V
394 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#F2F2F2), to(#ffffff));
395 background: -webkit-linear-gradient(#F2F2F2, #ffffff);
396 background: -moz-linear-gradient(#F2F2F2, #ffffff);
397 background: -ms-linear-gradient(#F2F2F2, #ffffff);
398 background: -o-linear-gradient(#F2F2F2, #ffffff);
399 background: linear-gradient(#F2F2F2, #ffffff);
45034273
SS
400}
401
402/*
eeb0fe33 403#linklist li.publicLinkHightLight:hover, #linklist li:hover {
9308d39f 404 background: #E9FFCE;
45034273
SS
405}
406*/
6e70d655 407
567967fd 408.linkdate {
32c8dee3
V
409 font-size:8pt;
410 color:#888;
411}
6e70d655 412
567967fd 413.linkdate a {
32c8dee3
V
414 color:#E28E3F;
415}
6e70d655 416
c133612f
V
417.linkqrcode {
418 display: inline;
419 position: relative;
420}
421
422a.qrcode img {
423 width: 13px;
424 height: 13px;
425}
426
32c8dee3 427#linklist li.private {
610bf418
MJ
428 background: url('../images/private.png') no-repeat 4px center;
429 padding-left: 30px;
32c8dee3 430}
6e70d655 431
32c8dee3 432#linklist li {
610bf418 433 padding-left: 30px;
32c8dee3 434}
6e70d655 435
32c8dee3
V
436.private .linktitle a {
437 color: #969696;
438}
6e70d655 439
32c8dee3
V
440.linktitle {
441 font-size: 14pt;
442 font-weight: bold;
443}
6e70d655 444
32c8dee3
V
445.linktitle a {
446 text-decoration: none;
447 color: #80AD48;
448}
6e70d655 449
32c8dee3
V
450.linktitle a:hover {
451 color: #F57900;
452}
6e70d655 453
567967fd 454.linkdate {
32c8dee3
V
455 font-size: 8pt;
456 color: #888;
457}
6e70d655 458
567967fd 459.linkdate a {
32c8dee3
V
460 background-image: url('../images/calendar.png');
461 padding: 2px 0 3px 20px;
462 background-repeat: no-repeat;
463 text-decoration: none;
464 color: #E28E3F;
465}
6e70d655 466
32c8dee3
V
467.linkdate a:hover {
468 color: #F57900 }
6e70d655 469
32c8dee3
V
470.linkurl {
471 font-size: 8pt;
472 color: #4BAA74;
473}
6e70d655 474
32c8dee3
V
475.linkdescription {
476 color: #000;
477 margin-top: 0;
478 margin-bottom: 12px;
479 font-weight: normal;
480 max-height: 400px;
481 overflow: auto;
482}
6e70d655 483
32c8dee3
V
484.linkdescription a {
485 text-decoration: none;
486 color: #3465A4;
487}
6e70d655 488
32c8dee3
V
489.linkdescription a:hover {
490 color: #F57900;
491}
6e70d655 492
32c8dee3
V
493.linktaglist {
494 padding-top: 10px;
495 line-height: 200%;
496}
6e70d655 497
45034273 498.linktag {
eeb0fe33 499 font-size: 9pt;
45034273 500 background-color: #F2F2F2;
9308d39f
V
501 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#F2F2F2), to(#ffffff));
502 background: -webkit-linear-gradient(#F2F2F2, #ffffff);
503 background: -moz-linear-gradient(#F2F2F2, #ffffff);
504 background: -ms-linear-gradient(#F2F2F2, #ffffff);
505 background: -o-linear-gradient(#F2F2F2, #ffffff);
506 background: linear-gradient(#F2F2F2, #ffffff);
45034273 507 box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
610bf418 508 padding: 3px 5px 3px 20px;
eeb0fe33 509 height: 20px;
4f8063b6 510 border-radius: 3px;
eeb0fe33
V
511 cursor: pointer;
512 background-image: url('../images/tag_blue.png');
513 background-repeat: no-repeat;
514 background-position: 3px center;
515 background-color: #ffffff;
45034273 516}
6e70d655 517
32c8dee3
V
518.linktag:hover {
519 border-color: #555573;
520 color: #000;
521}
6e70d655 522
32c8dee3
V
523.linktag a {
524 color: #777;
525 text-decoration: none;
526}
6e70d655 527
c133612f
V
528.linktag .remove {
529 border-left: 1px solid #aaa;
530 padding-left: 5px;
531 color:#6767A7;
532}
533
32c8dee3
V
534.linkshort {
535 font-size: 8pt;
536 color: #888;
537}
6e70d655 538
32c8dee3
V
539.linkshort a {
540 text-decoration: none;
541 color: #393964;
542}
6e70d655 543
32c8dee3
V
544.linkshort a:hover {
545 text-decoration: underline;
546}
6e70d655 547
32c8dee3
V
548.buttoneditform {
549 display: inline;
550}
6e70d655 551
32c8dee3
V
552#footer {
553 font-size: 8pt;
554 text-align: center;
32c8dee3
V
555 color: #888;
556 clear: both;
610bf418
MJ
557 max-width: 30em;
558 margin: 15px auto 15px auto;
32c8dee3 559}
6e70d655 560
c133612f 561#footer a {
32c8dee3
V
562 color: #486D08;
563}
6e70d655 564
c133612f 565#footer a:hover {
32c8dee3
V
566 color: #000000;
567}
6e70d655 568
32c8dee3
V
569#newversion {
570 background-color: #FFFFA0;
571 color: #000;
572 position: absolute;
573 top: 0;
574 right: 0;
575 padding: 2 7 2 7;
576 font-size: 9pt;
577}
6e70d655 578
c133612f
V
579#newversion #version_id {
580 text-decoration: blink;
581}
582
32c8dee3
V
583#cloudtag {
584 padding-left: 10%;
585 padding-right: 10%;
586}
6e70d655 587
c133612f
V
588#cloudtag .count {
589 color: #99f;
590 font-size: 9pt;
591 padding-left: 5px;
592 padding-right: 2px;
593}
594
32c8dee3
V
595#cloudtag a {
596 color: black;
597 text-decoration: none;
598}
6e70d655 599
c133612f
V
600#install {
601 margin: 0 20px;
602}
603
604#installform {
605 border: 1px solid black;
606 padding: 10px;
607}
608
609#installform table {
610 border: none;
611}
612
32c8dee3
V
613#installform td {
614 font-size: 10pt;
615 color: black;
616 padding: 10px 5px 10px 5px;
617 clear: left;
618}
6e70d655 619
c133612f
V
620#installform input.bigbutton {
621 float: right;
622}
623
32c8dee3
V
624#changepasswordform {
625 color: #ccc;
626 padding: 10px 5px 10px 5px;
627 clear: left;
628}
6e70d655 629
32c8dee3
V
630#changetag {
631 color: #ccc;
632 padding: 10px 5px 10px 5px;
633 clear: left;
634}
6e70d655 635
c133612f
V
636#changetag #totag {
637 margin-left: 40px;
638}
639
bdd1715b
A
640#changetag div {
641 float:left;
642}
643
644#changetag label {
645 padding: 5px;
646}
647
648#changetag li {
649 color: #000;
650}
32c8dee3
V
651#configform td {
652 color: #ccc;
653 font-size: 10pt;
654 padding: 10px 5px 10px 5px;
655}
6e70d655 656
32c8dee3
V
657#configform {
658 color: #ccc;
659 padding: 10px 5px 10px 5px;
660 clear: left;
661}
6e70d655 662
32c8dee3
V
663.thumbnail {
664 float: right;
610bf418
MJ
665 margin: 0px 10px 0px 10px;
666}
667
668.thumbnail img {
4f8063b6 669 border-radius: 3px;
610bf418 670 box-shadow: 0.5px 0.5px 0.5px 1px #dde4e6;
32c8dee3 671}
6e70d655 672
45034273 673/* If you want thumbnails on the left:
32c8dee3
V
674.thumbnail {
675 float: left;
676 margin-right: 10px;
677}
678.linkcontainer {
679 position: static;
680 margin-left: 130px;
681}
45034273
SS
682*/
683
45034273 684/* --- Picture wall CSS --- */
32c8dee3
V
685#picwall_container {
686 color: #fff;
687 background-color: #000;
688 clear: both;
689}
6e70d655 690
32c8dee3
V
691.picwall_pictureframe {
692 background-color: #000;
693 z-index: 5;
694 position: relative;
695 display: table-cell;
696 vertical-align: middle;
697 width: 90px;
698 height: 90px;
699 overflow: hidden;
700 text-align: center;
701 float: left;
702}
6e70d655 703
34047d23
A
704.b-lazy {
705 -webkit-transition: opacity 500ms ease-in-out;
706 -moz-transition: opacity 500ms ease-in-out;
707 -o-transition: opacity 500ms ease-in-out;
708 transition: opacity 500ms ease-in-out;
709 opacity: 0;
710}
711.b-lazy.b-loaded {
712 opacity: 1;
713}
714
32c8dee3
V
715.picwall_pictureframe img {
716 max-width: 100%;
717 height: auto;
34047d23 718 color: transparent;
32c8dee3 719} /* Adapt the width of the image */
6e70d655 720
32c8dee3
V
721.picwall_pictureframe a {
722 text-decoration: none;
723}
45034273
SS
724
725/* CSS to show title when hovering an image - no javascript required. */
32c8dee3
V
726.picwall_pictureframe span.info {
727 display: none;
728}
6e70d655 729
45034273 730.picwall_pictureframe:hover span.info {
eeb0fe33
V
731 display: block;
732 position: absolute;
32c8dee3
V
733 top: 0;
734 left: 0;
735 width: 90px;
eeb0fe33
V
736 font-weight: bold;
737 font-size: 8pt;
738 color: #fff;
45034273 739 text-align: left;
9308d39f 740 background-color: transparent;
32c8dee3
V
741 background-color: rgba(0, 0, 0, 0.4);
742 /* FF3+, Saf3+, Opera 10.10+, Chrome, IE9 */
743 filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#66000000, endColorstr=#66000000);
744 /* IE6\96IE9 */
eeb0fe33 745 text-shadow: 2px 2px 1px #000000;
45034273
SS
746}
747
eeb0fe33 748#linklist li.publicLinkHightLight {
9308d39f 749 background: #ffffff;
45034273
SS
750}
751
26c95568 752div#permalinkQrcode {
eeb0fe33
V
753 padding: 20px;
754 width: 220px;
755 height: 220px;
9308d39f
V
756 background-color: #ffffff;
757 border: 1px solid black;
758 position: absolute;
eeb0fe33
V
759 top: -100px;
760 left: -100px;
761 text-align: center;
9308d39f 762 font-size: 8pt;
eeb0fe33
V
763 z-index: 50;
764 -webkit-box-shadow: 2px 2px 20px 2px #333333;
765 -moz-box-shadow: 2px 2px 20px 2px #333333;
766 -o-box-shadow: 2px 2px 20px 2px #333333;
767 -ms-box-shadow: 2px 2px 20px 2px #333333;
768 box-shadow: 2px 2px 20px 2px #333333;
45034273
SS
769}
770
32c8dee3 771div.daily {
d741c9fc 772 font-family: Georgia, 'DejaVu Serif', Norasi, serif;
45034273
SS
773 background-color: #E6D6BE;
774 /* Background paper texture by BashCorpo:
775 http://www.bashcorpo.dk/textures.php
776 http://bashcorpo.deviantart.com/art/Grungy-paper-texture-v-5-22966998 */
777 background-image: url("../images/Paper_texture_v5_by_bashcorpo_w1000.jpg");
778 -webkit-background-size: cover;
779 -moz-background-size: cover;
780 -o-background-size: cover;
781 background-size: cover;
eeb0fe33 782 position: relative;
45034273
SS
783 border-bottom: 2px solid black;
784}
785
32c8dee3
V
786#daily_col1 {
787 float: left;
788 position: relative;
789 width: 33%;
790 padding-left: 1%;
791}
6e70d655 792
32c8dee3
V
793#daily_col2 {
794 float: left;
795 position: relative;
796 width: 33%;
797}
6e70d655 798
32c8dee3
V
799#daily_col3 {
800 float: left;
801 position: relative;
802 width: 33%;
803}
45034273 804
eeb0fe33
V
805div.dailyAbout {
806 float: left;
45034273
SS
807 border: 1px solid black;
808 font-size: 8pt;
eeb0fe33
V
809 position: absolute;
810 left: 10px;
45034273
SS
811 top: 15px;
812 padding: 5px 5px 5px 5px;
eeb0fe33 813 text-align: center;
45034273 814}
6e70d655 815
32c8dee3
V
816div.dailyAbout a {
817 color: #890500;
818}
6e70d655 819
c133612f
V
820div.dailyAbout img {
821 position: relative;
822 top: 3px;
823 margin-right: 4px;
824 width: 14px;
825 height: 14px;
826}
827
eeb0fe33 828div.dailyTitle {
9308d39f
V
829 font-weight: bold;
830 font-size: 44pt;
eeb0fe33
V
831 text-align: center;
832 padding: 10px 20px 0px 20px;
45034273 833}
6e70d655 834
eeb0fe33 835div.dailyDate {
9308d39f 836 font-size: 12pt;
eeb0fe33
V
837 font-weight: bold;
838 text-align: center;
839 padding: 0px 20px 30px 20px;
45034273
SS
840}
841
842/* Individual entries in "Daily": */
eeb0fe33 843div.dailyEntry {
45034273
SS
844 margin: 5px 10px 2px 5px;
845 font-size: 11pt;
846 border-top: 1px solid #555;
847}
6e70d655 848
32c8dee3
V
849div.dailyEntry a {
850 text-decoration: none;
851 color: #890500;
852}
6e70d655 853
32c8dee3
V
854div.dailyEntryTags {
855 font-size: 7.75pt;
856}
6e70d655 857
32c8dee3
V
858div.dailyEntryTitle {
859 font-size: 18pt;
860 font-weight: bold;
861}
6e70d655 862
38a2d03e
V
863div.dailyEntryLinkdate {
864 font-size: 8pt;
865}
866
eeb0fe33
V
867div.dailyEntryThumbnail {
868 width: 100%;
869 text-align: center;
870 background-color: rgb(128, 128, 128);
871 background: url(../images/50pc_transparent.png);
872 padding: 4px 0px 2px 0px;
45034273 873}
6e70d655 874
eeb0fe33 875div.dailyEntryDescription {
45034273 876 margin-top: 10px;
d741c9fc 877 margin-bottom: 30px;
eeb0fe33
V
878 text-align: justify;
879 overflow: auto;
45034273
SS
880}
881
c133612f
V
882div.dailyNoEntry {
883 text-align: center;
884 padding: 40px 0px 90px 0px;
885}
886
887.daily #closing {
888 clear: both;
889 text-align: center;
890 padding-bottom: 20px;
891}
892
ad6c27b7 893/* Common CSS screwdriver */
eeb0fe33
V
894.clear {
895 clear: both;
45034273
SS
896}
897
8079dfd1
A
898.right {
899 text-align: right;
900}
901
bdd1715b
A
902.white {
903 color: white;
904}
905
45034273 906/* For lazy images loading in picture wall.
d741c9fc 907 Using http://www.appelsiini.net/projects/lazyload
32c8dee3
V
908*/
909.lazyimage {
910 display: none;
911}
45034273 912
8079dfd1
A
913#configuration_table td {
914 border: none;
915 padding: 10px;
916 vertical-align: top;
917}
918
45034273 919@media print {
32c8dee3
V
920 html {
921 border: none;
922 background: #fff !important;
923 color: #000 !important;
924 }
6e70d655 925
32c8dee3
V
926 body {
927 font-size: 12pt;
928 width: auto !important;
929 margin: auto !important;
930 }
6e70d655 931
32c8dee3
V
932 /* Minimum numer of lines to display when splitting a paragraph
933 over two pages */
934 p {
935 orphans: 3;
936 widows: 3;
937 }
6e70d655 938
32c8dee3
V
939 a {
940 color: #000 !important;
941 text-decoration: none !important;
942 }
6e70d655 943
32c8dee3
V
944 #pageheader, .paging, #linklist li form, #footer {
945 display: none;
946 }
6e70d655 947
32c8dee3
V
948 #linklist li {
949 padding: 2 0 10 0;
950 border-top: 2px solid #000;
951 clear: both;
952 }
6e70d655 953
32c8dee3
V
954 #linklist li.private {
955 background-color: none;
956 border-left: 0;
957 }
6e70d655 958
32c8dee3
V
959 .linkdate {
960 line-height: 2;
961 }
6e70d655 962
32c8dee3
V
963 .linkurl {
964 color: #000;
965 }
6e70d655 966
32c8dee3
V
967 .linkdescription {
968 font-size: 10pt;
969 }
6e70d655 970
32c8dee3
V
971 .linktag {
972 border: 1px solid black;
973 font-style: italic;
974 font-size: 8pt;
975 }
976}
977
978@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 854px) {
9308d39f 979 /* A few fixes for mobile devices (far from perfect). */
e6cd88bb
ND
980
981 .tagfilter div.awesomplete {
982 width: 70%;
983 }
984
32c8dee3
V
985 .nomobile {
986 display: none;
987 }
6e70d655 988
32c8dee3
V
989 #logo {
990 display: none;
991 }
6e70d655 992
610bf418
MJ
993 #pageheader #menu ul {
994 text-align: center;
995 }
996
997 #pageheader #menu a {
eeb0fe33 998 padding: 5px;
4f8063b6 999 border-radius: 3px 3px 3px 3px;
eeb0fe33 1000 margin: 3px;
9308d39f 1001 }
6e70d655 1002
f30aa976 1003 #headerform label {
1004 width: 100%;
1005 display: block;
1006 height: auto;
1007 line-height: 25px;
1008 padding-bottom: 10px;
1009 }
1010
1011 #headerform label input[type=text],
1012 #headerform label input[type=password]{
1013 float: right;
1014 width: 70%;
1015 }
1016
32c8dee3
V
1017 .searchform, .tagfilter {
1018 display: block !important;
610bf418 1019 margin: 0px 3px 7px 0px !important;
32c8dee3 1020 padding: 0px !important;
610bf418 1021 width: 97% !important;
32c8dee3 1022 }
6e70d655 1023
32c8dee3
V
1024 .searchform input, .tagfilter input {
1025 margin: 0px !important;
1026 padding: 0px !important;
1027 display: inline !important;
1028 }
6e70d655 1029
32c8dee3
V
1030 .tagfilter input.bigbutton, .searchform input.bigbutton, .addform input.bigbutton {
1031 width: 30%;
1032 font-size: smaller;
1033 }
6e70d655 1034
32c8dee3
V
1035 #searchform_value {
1036 width: 70% !important;
1037 }
6e70d655 1038
32c8dee3
V
1039 #tagfilter_value {
1040 width: 70% !important;
1041 }
6e70d655 1042
32c8dee3
V
1043 div.qrcode {
1044 position: relative;
1045 float: left;
1046 top: -10px;
1047 left: 0px;
1048 }
6e70d655 1049
8079dfd1 1050 .paging_privatelinks {
32c8dee3
V
1051 float: none;
1052 }
6e70d655 1053
8079dfd1 1054 .paging_linksperpage {
32c8dee3
V
1055 float: none;
1056 margin-bottom: 10px;
1057 font-size: smaller;
1058 }
6e70d655 1059
8079dfd1 1060 #paging_older, #paging_newer, .paging_linksperpage a {
32c8dee3
V
1061 border: 1px solid black;
1062 padding: 3px 5px 3px 5px;
1063 background-color: #666;
1064 color: #fff;
4f8063b6 1065 border-radius: 3px 3px 3px 3px;
32c8dee3 1066 }
6e70d655 1067
32c8dee3
V
1068 .thumbnail {
1069 float: none;
1070 height: auto;
1071 margin: 0px;
1072 text-align: center;
1073 }
6e70d655 1074
32c8dee3
V
1075 #cloudtag {
1076 padding: 0px;
1077 }
6e70d655 1078
32c8dee3
V
1079 div.dailyAbout {
1080 float: none;
1081 position: relative;
1082 width: 100%;
1083 clear: both;
1084 padding: 0px;
1085 top: 0px;
1086 left: 0px;
1087 }
6e70d655 1088
32c8dee3
V
1089 #daily_col1, #daily_col2, #daily_col3 {
1090 float: none;
1091 width: 100%;
1092 padding: 0px;
1093 }
6e70d655 1094
32c8dee3
V
1095 div.dailyTitle {
1096 font-size: 18pt;
1097 margin-top: 5px;
1098 padding: 0px;
1099 }
6e70d655 1100
32c8dee3
V
1101 div.dailyDate {
1102 font-size: 11pt;
1103 padding: 0px;
1104 display: block;
1105 }
6e70d655 1106
32c8dee3
V
1107 div.dailyEntryTitle {
1108 font-size: 16pt;
1109 font-weight: bold;
1110 }
6e70d655 1111
32c8dee3
V
1112 div.dailyEntryDescription {
1113 font-size: 10pt;
1114 }
d741c9fc 1115}
45034273 1116
ed5b38dd
FE
1117#toolsdiv a.button-description {
1118 clear: none;
1119}
1120
1b647ff4 1121/* Highlight search results */
32c8dee3
V
1122.highlight {
1123 background-color: #FFFF33;
1124}
8079dfd1
A
1125
1126.center {
1127 text-align: center;
1128}
056107ab
A
1129
1130ul.errors {
1131 color: red;
1132 float: left;
1133}