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