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