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