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