]> git.immae.eu Git - github/shaarli/Shaarli.git/blame_incremental - inc/shaarli.css
Merge pull request #93 from ArthurHoaro/scripttag
[github/shaarli/Shaarli.git] / inc / shaarli.css
... / ...
CommitLineData
1/* Cascading Stylesheet for Shaarli - http://sebsauvage.net/wiki/doku.php?id=php:shaarli */
2
3/* CSS Reset from Yahoo to cope with browsers CSS inconsistencies. */
4/*
5 Copyright (c) 2010, Yahoo! Inc. All rights reserved. Code licensed under the BSD License: http://developer.yahoo.com/yui/license.html
6 version: 2.8.2r1
7 */
8html{color:#000;background:#FFF;}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,button,textarea,p,blockquote,th,td{margin:0;padding:0;}table{border-collapse:collapse;border-spacing:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var,optgroup{font-style:inherit;font-weight:inherit;}del,ins{text-decoration:none;}li{list-style:none;}caption,th{text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}q:before,q:after{content:'';}abbr,acronym{border:0;font-variant:normal;}sup{vertical-align:baseline;}sub{vertical-align:baseline;}legend{color:#000;}input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;}input,button,textarea,select{*font-size:100%;}
9
10body {
11 font-family: "Trebuchet MS",Verdana,Arial,Helvetica,sans-serif;
12 font-size: 10pt;
13 background-color: #ffffff;
14 word-wrap: break-word;
15}
16
17input, textarea {
18 background-color: #dedede;
19 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dedede), to(#ffffff));
20 background: -webkit-linear-gradient(#dedede, #ffffff);
21 background: -moz-linear-gradient(#dedede, #ffffff);
22 background: -ms-linear-gradient(#dedede, #ffffff);
23 background: -o-linear-gradient(#dedede, #ffffff);
24 background: linear-gradient(#dedede, #ffffff);
25 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
26 padding: 5px;
27 border-radius: 5px 5px 5px 5px;
28 border: none;
29 color: #000;
30}
31
32a {
33 text-decoration: none;
34}
35
36h1 {
37 font-size: 20pt;
38 font-weight: bold;
39 font-style: italic;
40 margin-bottom: 20px;
41}
42
43/* Buttons */
44.bigbutton {
45 background-color: #c0c0c0;
46 background: -moz-linear-gradient(#c0c0c0, #ffffff) repeat scroll 0 0 transparent;
47 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#c0c0c0), to(#ffffff));
48 background: -webkit-linear-gradient(#c0c0c0, #ffffff);
49 background: -ms-linear-gradient(#c0c0c0, #ffffff);
50 background: -o-linear-gradient(#c0c0c0, #ffffff);
51 background: linear-gradient(#c0c0c0, #ffffff);
52 border-radius: 3px 3px 3px 3px;
53 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
54 cursor: pointer;
55 height: 24px;
56 margin-left: 5px;
57 padding: 0 5px;
58 color: #606060;
59 border-style: outset;
60 border-width: 1px;
61}
62
63.smallbutton {
64 background-color: #c0c0c0;
65 background: -moz-linear-gradient(#c0c0c0, #ffffff) repeat scroll 0 0 transparent;
66 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#c0c0c0), to(#ffffff));
67 background: -webkit-linear-gradient(#c0c0c0, #ffffff);
68 background: -ms-linear-gradient(#c0c0c0, #ffffff);
69 background: -o-linear-gradient(#c0c0c0, #ffffff);
70 background: linear-gradient(#c0c0c0, #ffffff);
71 border-radius: 3px 3px 3px 3px;
72 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.5);
73 cursor: pointer;
74 height: 20px;
75 margin-left: 5px;
76 padding: 0 5px;
77 color: #606060;
78 border-style: outset;
79 border-width: 1px;
80}
81
82/* Small tab on the left of each link with edit/delete buttons. */
83.button_edit, .button_delete {
84 border-radius: 0;
85 box-shadow: none;
86 border-style: none;
87 border-width: 0;
88 padding: 0;
89 background: none;
90}
91
92.linkeditbuttons {
93 position: absolute;
94 left: -1px;
95 padding: 4px 2px 2px 2px;
96 background-color: #f0f0f0;
97
98 -webkit-border-radius: 0px 6px 6px 0px;
99 -moz-border-radius: 0px 6px 6px 0px;
100 -o-border-radius: 0px 6px 6px 0px;
101 -ms-border-radius: 0px 6px 6px 0px;
102 border-radius: 0px 6px 6px 0px;
103
104 -webkit-box-shadow: 0px 0px 3px 0px #333333;
105 -moz-box-shadow: 0px 0px 3px 0px #333333;
106 -o-box-shadow: 0px 0px 3px 0px #333333;
107 -ms-box-shadow: 0px 0px 3px 0px #333333;
108 box-shadow: 0px 0px 3px 0px #333333;
109}
110
111#pageheader #logo {
112 background-image: url('../images/logo.png');
113 background-repeat: no-repeat;
114 float: left;
115 margin: 0 10px 0 10px;
116 width: 105px;
117 height: 55px;
118 cursor: pointer;
119}
120
121#pageheader #linkcount {
122 float: right;
123 font-style: italic;
124 color: #bbb;
125 text-align: right;
126 padding-right: 5px;
127}
128
129#pageheader {
130 background-color: #333333;
131 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#333333), to(#111111));
132 background: -webkit-linear-gradient(#333333, #111111);
133 background: -moz-linear-gradient(#333333, #111111);
134 background: -ms-linear-gradient(#333333, #111111);
135 background: -o-linear-gradient(#333333, #111111);
136 background: linear-gradient(#333333, #111111);
137 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
138 width: auto;
139 padding: 0 10px 5px 10px;
140 margin: auto;
141}
142
143#pageheader a {
144 background-color: #333333;
145 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#333333), to(#000000));
146 background: -webkit-linear-gradient(#333333, #000000);
147 background: -moz-linear-gradient(#333333, #000000);
148 background: -ms-linear-gradient(#333333, #000000);
149 background: -o-linear-gradient(#333333, #000000);
150 background: linear-gradient(#333333, #000000);
151 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
152 padding: 5px;
153 border-radius: 5px 5px 5px 5px;
154 margin: 10px 3px 3px 3px;
155 color: #A2DD42;
156 float: left;
157 text-decoration: none;
158}
159
160#pageheader .search {
161 width: 100%;
162 white-space: nowrap;
163}
164
165#toolsdiv a {
166 clear: both;
167}
168
169#toolsdiv #bookmark {
170 clear: none;
171}
172
173#toolsdiv a span {
174 color: #ffffff;
175}
176
177.linksperpage, .tagfilter, .searchform, .addform {
178 background-color: #dedede;
179 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dedede), to(#ffffff));
180 background: -webkit-linear-gradient(#dedede, #ffffff);
181 background: -moz-linear-gradient(#dedede, #ffffff);
182 background: -ms-linear-gradient(#dedede, #ffffff);
183 background: -o-linear-gradient(#dedede, #ffffff);
184 background: linear-gradient(#dedede, #ffffff);
185 display: inline;
186 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
187 padding: 5px;
188 border: none;
189 border-radius: 5px 5px 5px 5px;
190 margin: 10px 3px 3px 3px;
191 color: #cecece;
192}
193
194.linksperpage {
195 box-shadow: 0 0 0 rgba(0, 0, 0, 0.5);
196 padding: 3px;
197}
198
199.linksperpage input, .tagfilter input, .searchform input, .addform input {
200 border: none;
201 color: #606060;
202 background: none;
203 box-shadow: none;
204 padding: 5px;
205}
206
207.linksperpage input {
208 padding: 0;
209}
210
211.searchform #searchform_value {
212 width: 30%;
213}
214
215.tagfilter {
216 margin-left:24px;
217}
218
219.tagfilter #tagfilter_value {
220 width: 10%;
221}
222
223.tagfilter input.bigbutton, .searchform input.bigbutton, .addform input.bigbutton {
224 background-color: #dedede;
225 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#dedede), to(#ffffff));
226 background: -webkit-linear-gradient(#dedede, #ffffff);
227 background: -moz-linear-gradient(#dedede, #ffffff);
228 background: -ms-linear-gradient(#dedede, #ffffff);
229 background: -o-linear-gradient(#dedede, #ffffff);
230 background: linear-gradient(#dedede, #ffffff);
231 box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
232 padding: 0 5px 0 5px;
233 margin: 5px 0 5px 0;
234 height: 20px;
235 border-radius: 5px 5px 5px 5px;
236 cursor: pointer;
237}
238
239#shaarli_title {
240 font-weight: bold;
241 font-style: italic;
242 margin-top: 0;
243}
244
245#shaarli_title a {
246 color: #fff !important;
247}
248
249#pageheader a:visited {
250 color: #98C943;
251 text-decoration: none;
252}
253
254#pageheader a:hover {
255 color: #FFFFC9;
256 text-decoration: none;
257}
258
259#pageheader a:active {
260 color: #bbb;
261 text-decoration: none;
262}
263
264#searchcriteria {
265 padding: 4px 0px 5px 5px;
266 font-weight: bold;
267}
268
269.paging {
270 padding: 5px;
271 background-color: #777;
272 color: #ccc;
273 text-align: center;
274 clear: both;
275}
276
277.paging a:link {
278 color: #ccc;
279 text-decoration: none;
280}
281
282.paging a:visited {
283 color: #ccc;
284}
285
286.paging a:hover {
287 color: #FFFFC9;
288}
289
290.paging a:active {
291 color: #fff;
292}
293
294.paging_privatelinks {
295 float: left;
296}
297
298.paging_linksperpage {
299 float: right;
300 padding-right: 5px;
301}
302
303.paging_linksperpage form.linksperpage {
304 display: inline;
305}
306
307.paging_linksperpage form.linksperpage input {
308 height: 15px;
309}
310
311.paging_current {
312 display: inline;
313 color: #fff;
314 padding: 0 20 0 20;
315}
316
317.paging_older {
318 margin-right: 15px;
319}
320
321.paging_newer {
322 margin-left: 15px;
323}
324
325#headerform {
326 color: #ffffff;
327 padding: 5px 5px 5px 5px;
328 clear: both;
329}
330
331#headerform input.linkurl {
332 width: 50%;
333}
334
335#toolsdiv {
336 color: #ffffff;
337 padding: 5px 5px 5px 5px;
338 clear: left;
339}
340
341#uploaddiv {
342 color: #ffffff;
343 padding: 5px 5px 5px 5px;
344 clear: left;
345}
346
347#editlinkform {
348 height: 100%;
349 color: #ffffff;
350 padding: 5px 5px 5px 15px;
351 width: 80%;
352 clear: left;
353}
354
355#editlinkform textarea, #editlinkform .lf_input {
356 width: 100%;
357}
358
359#linklist li {
360 padding: 4px 10px 15px 20px;
361 border-top: 1px solid #bbb;
362 clear: both;
363 background-color: #F2F2F2;
364 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#F2F2F2), to(#ffffff));
365 background: -webkit-linear-gradient(#F2F2F2, #ffffff);
366 background: -moz-linear-gradient(#F2F2F2, #ffffff);
367 background: -ms-linear-gradient(#F2F2F2, #ffffff);
368 background: -o-linear-gradient(#F2F2F2, #ffffff);
369 background: linear-gradient(#F2F2F2, #ffffff);
370}
371
372/*
373#linklist li.publicLinkHightLight:hover, #linklist li:hover {
374 background: #E9FFCE;
375}
376*/
377
378.linkdate, .linkarchive {
379 font-size:8pt;
380 color:#888;
381}
382
383.linkdate a, .linkarchive a {
384 color:#E28E3F;
385}
386
387.linkqrcode {
388 display: inline;
389 position: relative;
390}
391
392a.qrcode img {
393 width: 13px;
394 height: 13px;
395}
396
397#linklist li.private {
398 background: url('../images/private.png') no-repeat 10px center;
399 padding-left: 60px;
400}
401
402#linklist li {
403 padding-left: 26px;
404}
405
406.private .linktitle a {
407 color: #969696;
408}
409
410.linktitle {
411 font-size: 14pt;
412 font-weight: bold;
413}
414
415.linktitle a {
416 text-decoration: none;
417 color: #80AD48;
418}
419
420.linktitle a:hover {
421 color: #F57900;
422}
423
424.linkdate, .linkarchive {
425 font-size: 8pt;
426 color: #888;
427}
428
429.linkdate a, .linkarchive a {
430 background-image: url('../images/calendar.png');
431 padding: 2px 0 3px 20px;
432 background-repeat: no-repeat;
433 text-decoration: none;
434 color: #E28E3F;
435}
436
437.linkdate a:hover {
438 color: #F57900 }
439
440.linkurl {
441 font-size: 8pt;
442 color: #4BAA74;
443}
444
445.linkdescription {
446 color: #000;
447 margin-top: 0;
448 margin-bottom: 12px;
449 font-weight: normal;
450 max-height: 400px;
451 overflow: auto;
452}
453
454.linkdescription a {
455 text-decoration: none;
456 color: #3465A4;
457}
458
459.linkdescription a:hover {
460 color: #F57900;
461}
462
463.linktaglist {
464 padding-top: 10px;
465 line-height: 200%;
466}
467
468.linktag {
469 font-size: 9pt;
470 background-color: #F2F2F2;
471 background: -webkit-gradient(linear, 0 0, 0 bottom, from(#F2F2F2), to(#ffffff));
472 background: -webkit-linear-gradient(#F2F2F2, #ffffff);
473 background: -moz-linear-gradient(#F2F2F2, #ffffff);
474 background: -ms-linear-gradient(#F2F2F2, #ffffff);
475 background: -o-linear-gradient(#F2F2F2, #ffffff);
476 background: linear-gradient(#F2F2F2, #ffffff);
477 box-shadow: 0 0 2px rgba(0, 0, 0, 0.5);
478 padding: 3px 3px 3px 20px;
479 height: 20px;
480 border-radius: 3px 3px 3px 3px;
481 cursor: pointer;
482 background-image: url('../images/tag_blue.png');
483 background-repeat: no-repeat;
484 background-position: 3px center;
485 background-color: #ffffff;
486}
487
488.linktag:hover {
489 border-color: #555573;
490 color: #000;
491}
492
493.linktag a {
494 color: #777;
495 text-decoration: none;
496}
497
498.linktag .remove {
499 border-left: 1px solid #aaa;
500 padding-left: 5px;
501 color:#6767A7;
502}
503
504.linkshort {
505 font-size: 8pt;
506 color: #888;
507}
508
509.linkshort a {
510 text-decoration: none;
511 color: #393964;
512}
513
514.linkshort a:hover {
515 text-decoration: underline;
516}
517
518.buttoneditform {
519 display: inline;
520}
521
522#footer {
523 font-size: 8pt;
524 text-align: center;
525 border-top: 1px solid #ddd;
526 color: #888;
527 clear: both;
528}
529
530#footer a {
531 color: #486D08;
532}
533
534#footer a:hover {
535 color: #000000;
536}
537
538#newversion {
539 background-color: #FFFFA0;
540 color: #000;
541 position: absolute;
542 top: 0;
543 right: 0;
544 padding: 2 7 2 7;
545 font-size: 9pt;
546}
547
548#newversion #version_id {
549 text-decoration: blink;
550}
551
552#cloudtag {
553 padding-left: 10%;
554 padding-right: 10%;
555}
556
557#cloudtag .count {
558 color: #99f;
559 font-size: 9pt;
560 padding-left: 5px;
561 padding-right: 2px;
562}
563
564#cloudtag a {
565 color: black;
566 text-decoration: none;
567}
568
569#install {
570 margin: 0 20px;
571}
572
573#installform {
574 border: 1px solid black;
575 padding: 10px;
576}
577
578#installform table {
579 border: none;
580}
581
582#installform td {
583 font-size: 10pt;
584 color: black;
585 padding: 10px 5px 10px 5px;
586 clear: left;
587}
588
589#installform input.bigbutton {
590 float: right;
591}
592
593#changepasswordform {
594 color: #ccc;
595 padding: 10px 5px 10px 5px;
596 clear: left;
597}
598
599#changetag {
600 color: #ccc;
601 padding: 10px 5px 10px 5px;
602 clear: left;
603}
604
605#changetag #totag {
606 margin-left: 40px;
607}
608
609#configform td {
610 color: #ccc;
611 font-size: 10pt;
612 padding: 10px 5px 10px 5px;
613}
614
615#configform {
616 color: #ccc;
617 padding: 10px 5px 10px 5px;
618 clear: left;
619}
620
621.thumbnail {
622 float: right;
623 margin-left: 10px;
624}
625
626/* If you want thumbnails on the left:
627.thumbnail {
628 float: left;
629 margin-right: 10px;
630}
631.linkcontainer {
632 position: static;
633 margin-left: 130px;
634}
635*/
636
637/* --- Picture wall CSS --- */
638#picwall_container {
639 color: #fff;
640 background-color: #000;
641 clear: both;
642}
643
644.picwall_pictureframe {
645 background-color: #000;
646 z-index: 5;
647 position: relative;
648 display: table-cell;
649 vertical-align: middle;
650 width: 90px;
651 height: 90px;
652 overflow: hidden;
653 text-align: center;
654 float: left;
655}
656
657.picwall_pictureframe img {
658 max-width: 100%;
659 height: auto;
660} /* Adapt the width of the image */
661
662.picwall_pictureframe a {
663 text-decoration: none;
664}
665
666/* CSS to show title when hovering an image - no javascript required. */
667.picwall_pictureframe span.info {
668 display: none;
669}
670
671.picwall_pictureframe:hover span.info {
672 display: block;
673 position: absolute;
674 top: 0;
675 left: 0;
676 width: 90px;
677 font-weight: bold;
678 font-size: 8pt;
679 color: #fff;
680 text-align: left;
681 background-color: transparent;
682 background-color: rgba(0, 0, 0, 0.4);
683 /* FF3+, Saf3+, Opera 10.10+, Chrome, IE9 */
684 filter: progid: DXImageTransform.Microsoft.gradient(startColorstr=#66000000, endColorstr=#66000000);
685 /* IE6\96IE9 */
686 text-shadow: 2px 2px 1px #000000;
687}
688
689/* Minimal customisation for jQuery widgets */
690.ui-autocomplete {
691 background-color: #fff;
692 padding-left: 5px;
693}
694
695.ui-state-hover {
696 background-color: #604dff;
697 color: #fff;
698}
699
700#linklist li.publicLinkHightLight {
701 background: #ffffff;
702}
703
704div#permalinkQrcode {
705 padding: 20px;
706 width: 220px;
707 height: 220px;
708 background-color: #ffffff;
709 border: 1px solid black;
710 position: absolute;
711 top: -100px;
712 left: -100px;
713 text-align: center;
714 font-size: 8pt;
715 z-index: 50;
716 -webkit-box-shadow: 2px 2px 20px 2px #333333;
717 -moz-box-shadow: 2px 2px 20px 2px #333333;
718 -o-box-shadow: 2px 2px 20px 2px #333333;
719 -ms-box-shadow: 2px 2px 20px 2px #333333;
720 box-shadow: 2px 2px 20px 2px #333333;
721}
722
723div.daily {
724 font-family: Georgia, 'DejaVu Serif', Norasi, serif;
725 background-color: #E6D6BE;
726 /* Background paper texture by BashCorpo:
727 http://www.bashcorpo.dk/textures.php
728 http://bashcorpo.deviantart.com/art/Grungy-paper-texture-v-5-22966998 */
729 background-image: url("../images/Paper_texture_v5_by_bashcorpo_w1000.jpg");
730 -webkit-background-size: cover;
731 -moz-background-size: cover;
732 -o-background-size: cover;
733 background-size: cover;
734 position: relative;
735 border-bottom: 2px solid black;
736}
737
738#daily_col1 {
739 float: left;
740 position: relative;
741 width: 33%;
742 padding-left: 1%;
743}
744
745#daily_col2 {
746 float: left;
747 position: relative;
748 width: 33%;
749}
750
751#daily_col3 {
752 float: left;
753 position: relative;
754 width: 33%;
755}
756
757div.dailyAbout {
758 float: left;
759 border: 1px solid black;
760 font-size: 8pt;
761 position: absolute;
762 left: 10px;
763 top: 15px;
764 padding: 5px 5px 5px 5px;
765 text-align: center;
766}
767
768div.dailyAbout a {
769 color: #890500;
770}
771
772div.dailyAbout img {
773 position: relative;
774 top: 3px;
775 margin-right: 4px;
776 width: 14px;
777 height: 14px;
778}
779
780div.dailyTitle {
781 font-weight: bold;
782 font-size: 44pt;
783 text-align: center;
784 padding: 10px 20px 0px 20px;
785}
786
787div.dailyDate {
788 font-size: 12pt;
789 font-weight: bold;
790 text-align: center;
791 padding: 0px 20px 30px 20px;
792}
793
794/* Individual entries in "Daily": */
795div.dailyEntry {
796 margin: 5px 10px 2px 5px;
797 font-size: 11pt;
798 border-top: 1px solid #555;
799}
800
801div.dailyEntry a {
802 text-decoration: none;
803 color: #890500;
804}
805
806div.dailyEntryTags {
807 font-size: 7.75pt;
808}
809
810div.dailyEntryTitle {
811 font-size: 18pt;
812 font-weight: bold;
813}
814
815div.dailyEntryThumbnail {
816 width: 100%;
817 text-align: center;
818 background-color: rgb(128, 128, 128);
819 background: url(../images/50pc_transparent.png);
820 padding: 4px 0px 2px 0px;
821}
822
823div.dailyEntryDescription {
824 margin-top: 10px;
825 margin-bottom: 30px;
826 text-align: justify;
827 overflow: auto;
828}
829
830div.dailyNoEntry {
831 text-align: center;
832 padding: 40px 0px 90px 0px;
833}
834
835.daily #closing {
836 clear: both;
837 text-align: center;
838 padding-bottom: 20px;
839}
840
841/* Common CSS screwdriver */
842.clear {
843 clear: both;
844}
845
846.right {
847 text-align: right;
848}
849
850/* For lazy images loading in picture wall.
851 Using http://www.appelsiini.net/projects/lazyload
852*/
853.lazyimage {
854 display: none;
855}
856
857#configuration_table td {
858 border: none;
859 padding: 10px;
860 vertical-align: top;
861}
862
863@media print {
864 html {
865 border: none;
866 background: #fff !important;
867 color: #000 !important;
868 }
869
870 body {
871 font-size: 12pt;
872 width: auto !important;
873 margin: auto !important;
874 }
875
876 /* Minimum numer of lines to display when splitting a paragraph
877 over two pages */
878 p {
879 orphans: 3;
880 widows: 3;
881 }
882
883 a {
884 color: #000 !important;
885 text-decoration: none !important;
886 }
887
888 #pageheader, .paging, #linklist li form, #footer {
889 display: none;
890 }
891
892 #linklist li {
893 padding: 2 0 10 0;
894 border-top: 2px solid #000;
895 clear: both;
896 }
897
898 #linklist li.private {
899 background-color: none;
900 border-left: 0;
901 }
902
903 .linkdate {
904 line-height: 2;
905 }
906
907 .linkurl {
908 color: #000;
909 }
910
911 .linkdescription {
912 font-size: 10pt;
913 }
914
915 .linktag {
916 border: 1px solid black;
917 font-style: italic;
918 font-size: 8pt;
919 }
920}
921
922@media handheld, only screen and (max-width: 480px), only screen and (max-device-width: 854px) {
923 /* A few fixes for mobile devices (far from perfect). */
924 .nomobile {
925 display: none;
926 }
927
928 #logo {
929 display: none;
930 }
931
932 #pageheader a {
933 padding: 5px;
934 border-radius: 5px 5px 5px 5px;
935 margin: 3px;
936 }
937
938 .searchform, .tagfilter {
939 display: block !important;
940 margin: 0px !important;
941 padding: 0px !important;
942 width: 100% !important;
943 }
944
945 .searchform input, .tagfilter input {
946 margin: 0px !important;
947 padding: 0px !important;
948 display: inline !important;
949 }
950
951 .tagfilter input.bigbutton, .searchform input.bigbutton, .addform input.bigbutton {
952 width: 30%;
953 font-size: smaller;
954 }
955
956 #searchform_value {
957 width: 70% !important;
958 }
959
960 #tagfilter_value {
961 width: 70% !important;
962 }
963
964 div.qrcode {
965 position: relative;
966 float: left;
967 top: -10px;
968 left: 0px;
969 }
970
971 .paging_privatelinks {
972 float: none;
973 }
974
975 .paging_linksperpage {
976 float: none;
977 margin-bottom: 10px;
978 font-size: smaller;
979 }
980
981 #paging_older, #paging_newer, .paging_linksperpage a {
982 border: 1px solid black;
983 padding: 3px 5px 3px 5px;
984 background-color: #666;
985 color: #fff;
986 border-radius: 5px 5px 5px 5px;
987 }
988
989 .thumbnail {
990 float: none;
991 height: auto;
992 margin: 0px;
993 text-align: center;
994 }
995
996 #cloudtag {
997 padding: 0px;
998 }
999
1000 div.dailyAbout {
1001 float: none;
1002 position: relative;
1003 width: 100%;
1004 clear: both;
1005 padding: 0px;
1006 top: 0px;
1007 left: 0px;
1008 }
1009
1010 #daily_col1, #daily_col2, #daily_col3 {
1011 float: none;
1012 width: 100%;
1013 padding: 0px;
1014 }
1015
1016 div.dailyTitle {
1017 font-size: 18pt;
1018 margin-top: 5px;
1019 padding: 0px;
1020 }
1021
1022 div.dailyDate {
1023 font-size: 11pt;
1024 padding: 0px;
1025 display: block;
1026 }
1027
1028 div.dailyEntryTitle {
1029 font-size: 16pt;
1030 font-weight: bold;
1031 }
1032
1033 div.dailyEntryDescription {
1034 font-size: 10pt;
1035 }
1036}
1037
1038/* Highlight search results */
1039.highlight {
1040 background-color: #FFFF33;
1041}
1042
1043.center {
1044 text-align: center;
1045}