]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - inc/shaarli.css
update COPYING
[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;
9308d39f
V
20 border-radius: 5px 5px 5px 5px;
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;
134 border-radius: 5px 5px 5px 5px;
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
V
193 border: none;
194 border-radius: 5px 5px 5px 5px;
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
224.tagfilter #tagfilter_value {
225 width: 10%;
226}
227
eeb0fe33 228.tagfilter input.bigbutton, .searchform input.bigbutton, .addform input.bigbutton {
45034273 229 background-color: #dedede;
9308d39f
V
230 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dedede), to(#ffffff));
231 background: -webkit-linear-gradient(#dedede, #ffffff);
232 background: -moz-linear-gradient(#dedede, #ffffff);
233 background: -ms-linear-gradient(#dedede, #ffffff);
234 background: -o-linear-gradient(#dedede, #ffffff);
235 background: linear-gradient(#dedede, #ffffff);
236 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
eeb0fe33
V
237 padding: 0 5px 0 5px;
238 margin: 5px 0 5px 0;
239 height: 20px;
9308d39f 240 border-radius: 5px 5px 5px 5px;
eeb0fe33 241 cursor: pointer;
45034273
SS
242}
243
32c8dee3
V
244#shaarli_title {
245 font-weight: bold;
246 font-style: italic;
247 margin-top: 0;
248}
6e70d655 249
32c8dee3
V
250#shaarli_title a {
251 color: #fff !important;
252}
253
254#pageheader a:visited {
255 color: #98C943;
256 text-decoration: none;
257}
6e70d655 258
32c8dee3
V
259#pageheader a:hover {
260 color: #FFFFC9;
261 text-decoration: none;
262}
6e70d655 263
32c8dee3
V
264#pageheader a:active {
265 color: #bbb;
266 text-decoration: none;
267}
6e70d655 268
32c8dee3
V
269#searchcriteria {
270 padding: 4px 0px 5px 5px;
271 font-weight: bold;
272}
6e70d655 273
32c8dee3
V
274.paging {
275 padding: 5px;
276 background-color: #777;
277 color: #ccc;
278 text-align: center;
279 clear: both;
280}
6e70d655 281
32c8dee3
V
282.paging a:link {
283 color: #ccc;
284 text-decoration: none;
285}
6e70d655 286
32c8dee3
V
287.paging a:visited {
288 color: #ccc;
289}
6e70d655 290
32c8dee3
V
291.paging a:hover {
292 color: #FFFFC9;
293}
6e70d655 294
32c8dee3
V
295.paging a:active {
296 color: #fff;
297}
6e70d655 298
8079dfd1 299.paging_privatelinks {
32c8dee3
V
300 float: left;
301}
6e70d655 302
8079dfd1 303.paging_linksperpage {
32c8dee3
V
304 float: right;
305 padding-right: 5px;
610bf418 306 margin: 0px 10px 2px 0px;
32c8dee3 307}
6e70d655 308
8079dfd1 309.paging_linksperpage form.linksperpage {
c133612f
V
310 display: inline;
311}
312
8079dfd1 313.paging_linksperpage form.linksperpage input {
c133612f
V
314 height: 15px;
315}
316
8079dfd1 317.paging_current {
32c8dee3
V
318 display: inline;
319 color: #fff;
320 padding: 0 20 0 20;
321}
6e70d655 322
8079dfd1 323.paging_older {
32c8dee3
V
324 margin-right: 15px;
325}
6e70d655 326
8079dfd1 327.paging_newer {
32c8dee3
V
328 margin-left: 15px;
329}
330
331#headerform {
332 color: #ffffff;
333 padding: 5px 5px 5px 5px;
334 clear: both;
335}
6e70d655 336
c133612f
V
337#headerform input.linkurl {
338 width: 50%;
339}
340
32c8dee3
V
341#toolsdiv {
342 color: #ffffff;
343 padding: 5px 5px 5px 5px;
344 clear: left;
345}
6e70d655 346
32c8dee3
V
347#uploaddiv {
348 color: #ffffff;
349 padding: 5px 5px 5px 5px;
350 clear: left;
351}
6e70d655 352
32c8dee3
V
353#editlinkform {
354 height: 100%;
355 color: #ffffff;
356 padding: 5px 5px 5px 15px;
357 width: 80%;
358 clear: left;
359}
6e70d655 360
c133612f
V
361#editlinkform textarea, #editlinkform .lf_input {
362 width: 100%;
363}
364
45034273 365#linklist li {
32c8dee3
V
366 padding: 4px 10px 15px 20px;
367 border-top: 1px solid #bbb;
368 clear: both;
45034273 369 background-color: #F2F2F2;
9308d39f
V
370 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#F2F2F2), to(#ffffff));
371 background: -webkit-linear-gradient(#F2F2F2, #ffffff);
372 background: -moz-linear-gradient(#F2F2F2, #ffffff);
373 background: -ms-linear-gradient(#F2F2F2, #ffffff);
374 background: -o-linear-gradient(#F2F2F2, #ffffff);
375 background: linear-gradient(#F2F2F2, #ffffff);
45034273
SS
376}
377
378/*
eeb0fe33 379#linklist li.publicLinkHightLight:hover, #linklist li:hover {
9308d39f 380 background: #E9FFCE;
45034273
SS
381}
382*/
6e70d655 383
32c8dee3
V
384.linkdate, .linkarchive {
385 font-size:8pt;
386 color:#888;
387}
6e70d655 388
32c8dee3
V
389.linkdate a, .linkarchive a {
390 color:#E28E3F;
391}
6e70d655 392
c133612f
V
393.linkqrcode {
394 display: inline;
395 position: relative;
396}
397
398a.qrcode img {
399 width: 13px;
400 height: 13px;
401}
402
32c8dee3 403#linklist li.private {
610bf418
MJ
404 background: url('../images/private.png') no-repeat 4px center;
405 padding-left: 30px;
32c8dee3 406}
6e70d655 407
32c8dee3 408#linklist li {
610bf418 409 padding-left: 30px;
32c8dee3 410}
6e70d655 411
32c8dee3
V
412.private .linktitle a {
413 color: #969696;
414}
6e70d655 415
32c8dee3
V
416.linktitle {
417 font-size: 14pt;
418 font-weight: bold;
419}
6e70d655 420
32c8dee3
V
421.linktitle a {
422 text-decoration: none;
423 color: #80AD48;
424}
6e70d655 425
32c8dee3
V
426.linktitle a:hover {
427 color: #F57900;
428}
6e70d655 429
32c8dee3
V
430.linkdate, .linkarchive {
431 font-size: 8pt;
432 color: #888;
433}
6e70d655 434
32c8dee3
V
435.linkdate a, .linkarchive a {
436 background-image: url('../images/calendar.png');
437 padding: 2px 0 3px 20px;
438 background-repeat: no-repeat;
439 text-decoration: none;
440 color: #E28E3F;
441}
6e70d655 442
32c8dee3
V
443.linkdate a:hover {
444 color: #F57900 }
6e70d655 445
32c8dee3
V
446.linkurl {
447 font-size: 8pt;
448 color: #4BAA74;
449}
6e70d655 450
32c8dee3
V
451.linkdescription {
452 color: #000;
453 margin-top: 0;
454 margin-bottom: 12px;
455 font-weight: normal;
456 max-height: 400px;
457 overflow: auto;
458}
6e70d655 459
32c8dee3
V
460.linkdescription a {
461 text-decoration: none;
462 color: #3465A4;
463}
6e70d655 464
32c8dee3
V
465.linkdescription a:hover {
466 color: #F57900;
467}
6e70d655 468
32c8dee3
V
469.linktaglist {
470 padding-top: 10px;
471 line-height: 200%;
472}
6e70d655 473
45034273 474.linktag {
eeb0fe33 475 font-size: 9pt;
45034273 476 background-color: #F2F2F2;
9308d39f
V
477 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#F2F2F2), to(#ffffff));
478 background: -webkit-linear-gradient(#F2F2F2, #ffffff);
479 background: -moz-linear-gradient(#F2F2F2, #ffffff);
480 background: -ms-linear-gradient(#F2F2F2, #ffffff);
481 background: -o-linear-gradient(#F2F2F2, #ffffff);
482 background: linear-gradient(#F2F2F2, #ffffff);
45034273 483 box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
610bf418 484 padding: 3px 5px 3px 20px;
eeb0fe33 485 height: 20px;
610bf418 486 border-radius: 5px;
eeb0fe33
V
487 cursor: pointer;
488 background-image: url('../images/tag_blue.png');
489 background-repeat: no-repeat;
490 background-position: 3px center;
491 background-color: #ffffff;
45034273 492}
6e70d655 493
32c8dee3
V
494.linktag:hover {
495 border-color: #555573;
496 color: #000;
497}
6e70d655 498
32c8dee3
V
499.linktag a {
500 color: #777;
501 text-decoration: none;
502}
6e70d655 503
c133612f
V
504.linktag .remove {
505 border-left: 1px solid #aaa;
506 padding-left: 5px;
507 color:#6767A7;
508}
509
32c8dee3
V
510.linkshort {
511 font-size: 8pt;
512 color: #888;
513}
6e70d655 514
32c8dee3
V
515.linkshort a {
516 text-decoration: none;
517 color: #393964;
518}
6e70d655 519
32c8dee3
V
520.linkshort a:hover {
521 text-decoration: underline;
522}
6e70d655 523
32c8dee3
V
524.buttoneditform {
525 display: inline;
526}
6e70d655 527
32c8dee3
V
528#footer {
529 font-size: 8pt;
530 text-align: center;
32c8dee3
V
531 color: #888;
532 clear: both;
610bf418
MJ
533 max-width: 30em;
534 margin: 15px auto 15px auto;
32c8dee3 535}
6e70d655 536
c133612f 537#footer a {
32c8dee3
V
538 color: #486D08;
539}
6e70d655 540
c133612f 541#footer a:hover {
32c8dee3
V
542 color: #000000;
543}
6e70d655 544
32c8dee3
V
545#newversion {
546 background-color: #FFFFA0;
547 color: #000;
548 position: absolute;
549 top: 0;
550 right: 0;
551 padding: 2 7 2 7;
552 font-size: 9pt;
553}
6e70d655 554
c133612f
V
555#newversion #version_id {
556 text-decoration: blink;
557}
558
32c8dee3
V
559#cloudtag {
560 padding-left: 10%;
561 padding-right: 10%;
562}
6e70d655 563
c133612f
V
564#cloudtag .count {
565 color: #99f;
566 font-size: 9pt;
567 padding-left: 5px;
568 padding-right: 2px;
569}
570
32c8dee3
V
571#cloudtag a {
572 color: black;
573 text-decoration: none;
574}
6e70d655 575
c133612f
V
576#install {
577 margin: 0 20px;
578}
579
580#installform {
581 border: 1px solid black;
582 padding: 10px;
583}
584
585#installform table {
586 border: none;
587}
588
32c8dee3
V
589#installform td {
590 font-size: 10pt;
591 color: black;
592 padding: 10px 5px 10px 5px;
593 clear: left;
594}
6e70d655 595
c133612f
V
596#installform input.bigbutton {
597 float: right;
598}
599
32c8dee3
V
600#changepasswordform {
601 color: #ccc;
602 padding: 10px 5px 10px 5px;
603 clear: left;
604}
6e70d655 605
32c8dee3
V
606#changetag {
607 color: #ccc;
608 padding: 10px 5px 10px 5px;
609 clear: left;
610}
6e70d655 611
c133612f
V
612#changetag #totag {
613 margin-left: 40px;
614}
615
32c8dee3
V
616#configform td {
617 color: #ccc;
618 font-size: 10pt;
619 padding: 10px 5px 10px 5px;
620}
6e70d655 621
32c8dee3
V
622#configform {
623 color: #ccc;
624 padding: 10px 5px 10px 5px;
625 clear: left;
626}
6e70d655 627
32c8dee3
V
628.thumbnail {
629 float: right;
610bf418
MJ
630 margin: 0px 10px 0px 10px;
631}
632
633.thumbnail img {
634 border-radius: 5px;
635 box-shadow: 0.5px 0.5px 0.5px 1px #dde4e6;
32c8dee3 636}
6e70d655 637
45034273 638/* If you want thumbnails on the left:
32c8dee3
V
639.thumbnail {
640 float: left;
641 margin-right: 10px;
642}
643.linkcontainer {
644 position: static;
645 margin-left: 130px;
646}
45034273
SS
647*/
648
45034273 649/* --- Picture wall CSS --- */
32c8dee3
V
650#picwall_container {
651 color: #fff;
652 background-color: #000;
653 clear: both;
654}
6e70d655 655
32c8dee3
V
656.picwall_pictureframe {
657 background-color: #000;
658 z-index: 5;
659 position: relative;
660 display: table-cell;
661 vertical-align: middle;
662 width: 90px;
663 height: 90px;
664 overflow: hidden;
665 text-align: center;
666 float: left;
667}
6e70d655 668
34047d23
A
669.b-lazy {
670 -webkit-transition: opacity 500ms ease-in-out;
671 -moz-transition: opacity 500ms ease-in-out;
672 -o-transition: opacity 500ms ease-in-out;
673 transition: opacity 500ms ease-in-out;
674 opacity: 0;
675}
676.b-lazy.b-loaded {
677 opacity: 1;
678}
679
32c8dee3
V
680.picwall_pictureframe img {
681 max-width: 100%;
682 height: auto;
34047d23 683 color: transparent;
32c8dee3 684} /* Adapt the width of the image */
6e70d655 685
32c8dee3
V
686.picwall_pictureframe a {
687 text-decoration: none;
688}
45034273
SS
689
690/* CSS to show title when hovering an image - no javascript required. */
32c8dee3
V
691.picwall_pictureframe span.info {
692 display: none;
693}
6e70d655 694
45034273 695.picwall_pictureframe:hover span.info {
eeb0fe33
V
696 display: block;
697 position: absolute;
32c8dee3
V
698 top: 0;
699 left: 0;
700 width: 90px;
eeb0fe33
V
701 font-weight: bold;
702 font-size: 8pt;
703 color: #fff;
45034273 704 text-align: left;
9308d39f 705 background-color: transparent;
32c8dee3
V
706 background-color: rgba(0, 0, 0, 0.4);
707 /* FF3+, Saf3+, Opera 10.10+, Chrome, IE9 */
708 filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#66000000, endColorstr=#66000000);
709 /* IE6\96IE9 */
eeb0fe33 710 text-shadow: 2px 2px 1px #000000;
45034273
SS
711}
712
713/* Minimal customisation for jQuery widgets */
32c8dee3
V
714.ui-autocomplete {
715 background-color: #fff;
716 padding-left: 5px;
717}
6e70d655 718
32c8dee3
V
719.ui-state-hover {
720 background-color: #604dff;
721 color: #fff;
722}
45034273 723
eeb0fe33 724#linklist li.publicLinkHightLight {
9308d39f 725 background: #ffffff;
45034273
SS
726}
727
26c95568 728div#permalinkQrcode {
eeb0fe33
V
729 padding: 20px;
730 width: 220px;
731 height: 220px;
9308d39f
V
732 background-color: #ffffff;
733 border: 1px solid black;
734 position: absolute;
eeb0fe33
V
735 top: -100px;
736 left: -100px;
737 text-align: center;
9308d39f 738 font-size: 8pt;
eeb0fe33
V
739 z-index: 50;
740 -webkit-box-shadow: 2px 2px 20px 2px #333333;
741 -moz-box-shadow: 2px 2px 20px 2px #333333;
742 -o-box-shadow: 2px 2px 20px 2px #333333;
743 -ms-box-shadow: 2px 2px 20px 2px #333333;
744 box-shadow: 2px 2px 20px 2px #333333;
45034273
SS
745}
746
32c8dee3 747div.daily {
d741c9fc 748 font-family: Georgia, 'DejaVu Serif', Norasi, serif;
45034273
SS
749 background-color: #E6D6BE;
750 /* Background paper texture by BashCorpo:
751 http://www.bashcorpo.dk/textures.php
752 http://bashcorpo.deviantart.com/art/Grungy-paper-texture-v-5-22966998 */
753 background-image: url("../images/Paper_texture_v5_by_bashcorpo_w1000.jpg");
754 -webkit-background-size: cover;
755 -moz-background-size: cover;
756 -o-background-size: cover;
757 background-size: cover;
eeb0fe33 758 position: relative;
45034273
SS
759 border-bottom: 2px solid black;
760}
761
32c8dee3
V
762#daily_col1 {
763 float: left;
764 position: relative;
765 width: 33%;
766 padding-left: 1%;
767}
6e70d655 768
32c8dee3
V
769#daily_col2 {
770 float: left;
771 position: relative;
772 width: 33%;
773}
6e70d655 774
32c8dee3
V
775#daily_col3 {
776 float: left;
777 position: relative;
778 width: 33%;
779}
45034273 780
eeb0fe33
V
781div.dailyAbout {
782 float: left;
45034273
SS
783 border: 1px solid black;
784 font-size: 8pt;
eeb0fe33
V
785 position: absolute;
786 left: 10px;
45034273
SS
787 top: 15px;
788 padding: 5px 5px 5px 5px;
eeb0fe33 789 text-align: center;
45034273 790}
6e70d655 791
32c8dee3
V
792div.dailyAbout a {
793 color: #890500;
794}
6e70d655 795
c133612f
V
796div.dailyAbout img {
797 position: relative;
798 top: 3px;
799 margin-right: 4px;
800 width: 14px;
801 height: 14px;
802}
803
eeb0fe33 804div.dailyTitle {
9308d39f
V
805 font-weight: bold;
806 font-size: 44pt;
eeb0fe33
V
807 text-align: center;
808 padding: 10px 20px 0px 20px;
45034273 809}
6e70d655 810
eeb0fe33 811div.dailyDate {
9308d39f 812 font-size: 12pt;
eeb0fe33
V
813 font-weight: bold;
814 text-align: center;
815 padding: 0px 20px 30px 20px;
45034273
SS
816}
817
818/* Individual entries in "Daily": */
eeb0fe33 819div.dailyEntry {
45034273
SS
820 margin: 5px 10px 2px 5px;
821 font-size: 11pt;
822 border-top: 1px solid #555;
823}
6e70d655 824
32c8dee3
V
825div.dailyEntry a {
826 text-decoration: none;
827 color: #890500;
828}
6e70d655 829
32c8dee3
V
830div.dailyEntryTags {
831 font-size: 7.75pt;
832}
6e70d655 833
32c8dee3
V
834div.dailyEntryTitle {
835 font-size: 18pt;
836 font-weight: bold;
837}
6e70d655 838
38a2d03e
V
839div.dailyEntryLinkdate {
840 font-size: 8pt;
841}
842
eeb0fe33
V
843div.dailyEntryThumbnail {
844 width: 100%;
845 text-align: center;
846 background-color: rgb(128, 128, 128);
847 background: url(../images/50pc_transparent.png);
848 padding: 4px 0px 2px 0px;
45034273 849}
6e70d655 850
eeb0fe33 851div.dailyEntryDescription {
45034273 852 margin-top: 10px;
d741c9fc 853 margin-bottom: 30px;
eeb0fe33
V
854 text-align: justify;
855 overflow: auto;
45034273
SS
856}
857
c133612f
V
858div.dailyNoEntry {
859 text-align: center;
860 padding: 40px 0px 90px 0px;
861}
862
863.daily #closing {
864 clear: both;
865 text-align: center;
866 padding-bottom: 20px;
867}
868
ad6c27b7 869/* Common CSS screwdriver */
eeb0fe33
V
870.clear {
871 clear: both;
45034273
SS
872}
873
8079dfd1
A
874.right {
875 text-align: right;
876}
877
45034273 878/* For lazy images loading in picture wall.
d741c9fc 879 Using http://www.appelsiini.net/projects/lazyload
32c8dee3
V
880*/
881.lazyimage {
882 display: none;
883}
45034273 884
8079dfd1
A
885#configuration_table td {
886 border: none;
887 padding: 10px;
888 vertical-align: top;
889}
890
45034273 891@media print {
32c8dee3
V
892 html {
893 border: none;
894 background: #fff !important;
895 color: #000 !important;
896 }
6e70d655 897
32c8dee3
V
898 body {
899 font-size: 12pt;
900 width: auto !important;
901 margin: auto !important;
902 }
6e70d655 903
32c8dee3
V
904 /* Minimum numer of lines to display when splitting a paragraph
905 over two pages */
906 p {
907 orphans: 3;
908 widows: 3;
909 }
6e70d655 910
32c8dee3
V
911 a {
912 color: #000 !important;
913 text-decoration: none !important;
914 }
6e70d655 915
32c8dee3
V
916 #pageheader, .paging, #linklist li form, #footer {
917 display: none;
918 }
6e70d655 919
32c8dee3
V
920 #linklist li {
921 padding: 2 0 10 0;
922 border-top: 2px solid #000;
923 clear: both;
924 }
6e70d655 925
32c8dee3
V
926 #linklist li.private {
927 background-color: none;
928 border-left: 0;
929 }
6e70d655 930
32c8dee3
V
931 .linkdate {
932 line-height: 2;
933 }
6e70d655 934
32c8dee3
V
935 .linkurl {
936 color: #000;
937 }
6e70d655 938
32c8dee3
V
939 .linkdescription {
940 font-size: 10pt;
941 }
6e70d655 942
32c8dee3
V
943 .linktag {
944 border: 1px solid black;
945 font-style: italic;
946 font-size: 8pt;
947 }
948}
949
950@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 854px) {
9308d39f 951 /* A few fixes for mobile devices (far from perfect). */
32c8dee3
V
952 .nomobile {
953 display: none;
954 }
6e70d655 955
32c8dee3
V
956 #logo {
957 display: none;
958 }
6e70d655 959
610bf418
MJ
960 #pageheader #menu ul {
961 text-align: center;
962 }
963
964 #pageheader #menu a {
eeb0fe33 965 padding: 5px;
45034273 966 border-radius: 5px 5px 5px 5px;
eeb0fe33 967 margin: 3px;
9308d39f 968 }
6e70d655 969
32c8dee3
V
970 .searchform, .tagfilter {
971 display: block !important;
610bf418 972 margin: 0px 3px 7px 0px !important;
32c8dee3 973 padding: 0px !important;
610bf418 974 width: 97% !important;
32c8dee3 975 }
6e70d655 976
32c8dee3
V
977 .searchform input, .tagfilter input {
978 margin: 0px !important;
979 padding: 0px !important;
980 display: inline !important;
981 }
6e70d655 982
32c8dee3
V
983 .tagfilter input.bigbutton, .searchform input.bigbutton, .addform input.bigbutton {
984 width: 30%;
985 font-size: smaller;
986 }
6e70d655 987
32c8dee3
V
988 #searchform_value {
989 width: 70% !important;
990 }
6e70d655 991
32c8dee3
V
992 #tagfilter_value {
993 width: 70% !important;
994 }
6e70d655 995
32c8dee3
V
996 div.qrcode {
997 position: relative;
998 float: left;
999 top: -10px;
1000 left: 0px;
1001 }
6e70d655 1002
8079dfd1 1003 .paging_privatelinks {
32c8dee3
V
1004 float: none;
1005 }
6e70d655 1006
8079dfd1 1007 .paging_linksperpage {
32c8dee3
V
1008 float: none;
1009 margin-bottom: 10px;
1010 font-size: smaller;
1011 }
6e70d655 1012
8079dfd1 1013 #paging_older, #paging_newer, .paging_linksperpage a {
32c8dee3
V
1014 border: 1px solid black;
1015 padding: 3px 5px 3px 5px;
1016 background-color: #666;
1017 color: #fff;
1018 border-radius: 5px 5px 5px 5px;
1019 }
6e70d655 1020
32c8dee3
V
1021 .thumbnail {
1022 float: none;
1023 height: auto;
1024 margin: 0px;
1025 text-align: center;
1026 }
6e70d655 1027
32c8dee3
V
1028 #cloudtag {
1029 padding: 0px;
1030 }
6e70d655 1031
32c8dee3
V
1032 div.dailyAbout {
1033 float: none;
1034 position: relative;
1035 width: 100%;
1036 clear: both;
1037 padding: 0px;
1038 top: 0px;
1039 left: 0px;
1040 }
6e70d655 1041
32c8dee3
V
1042 #daily_col1, #daily_col2, #daily_col3 {
1043 float: none;
1044 width: 100%;
1045 padding: 0px;
1046 }
6e70d655 1047
32c8dee3
V
1048 div.dailyTitle {
1049 font-size: 18pt;
1050 margin-top: 5px;
1051 padding: 0px;
1052 }
6e70d655 1053
32c8dee3
V
1054 div.dailyDate {
1055 font-size: 11pt;
1056 padding: 0px;
1057 display: block;
1058 }
6e70d655 1059
32c8dee3
V
1060 div.dailyEntryTitle {
1061 font-size: 16pt;
1062 font-weight: bold;
1063 }
6e70d655 1064
32c8dee3
V
1065 div.dailyEntryDescription {
1066 font-size: 10pt;
1067 }
d741c9fc 1068}
45034273 1069
ed5b38dd
FE
1070#toolsdiv a.button-description {
1071 clear: none;
1072}
1073
1b647ff4 1074/* Highlight search results */
32c8dee3
V
1075.highlight {
1076 background-color: #FFFF33;
1077}
8079dfd1
A
1078
1079.center {
1080 text-align: center;
1081}