]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tpl/default/css/shaarli.css
Theme: Vertical align theme select in configure
[github/shaarli/Shaarli.git] / tpl / default / css / shaarli.css
1 /**
2 * General
3 */
4 body {
5 background: #d0d0d0;
6 }
7
8 .strong {
9 font-weight: bold;
10 }
11
12 .clear {
13 clear: both;
14 }
15
16 .center {
17 text-align: center;
18 margin: auto;
19 }
20
21 .label {
22 display: inline-block;
23 padding: .25em .4em;
24 font-size: 75%;
25 font-weight: 700;
26 line-height: 1;
27 text-align: center;
28 white-space: nowrap;
29 vertical-align: baseline;
30 border-radius: .25rem;
31 }
32
33 pre {
34 max-width: 100%;
35 }
36
37 @font-face {
38 font-family: 'Roboto Slab';
39 font-weight: 400;
40 font-style: normal;
41 src:
42 local('Fira Sans'),
43 local('Fira-Sans-regular'),
44 url('../fonts/Fira-Sans-regular.woff2') format('woff2'),
45 url('../fonts/Fira-Sans-regular.woff') format('woff');
46 }
47
48 /**
49 * Extends Pure grids responsive to hide items.
50 * Use xx-0 to hide an item on xx screen.
51 * Display it at any level with xx-visible.
52 */
53 .pure-u-0 { display: none !important; }
54 @media screen and (min-width: 35.5em) {
55 .pure-u-sm-0 { display: none !important; }
56 .pure-u-sm-visible { display: inline-block !important; }
57 }
58 @media screen and (min-width: 48em) {
59 .pure-u-md-0 { display: none !important; }
60 .pure-u-md-visible { display: inline-block !important; }
61 }
62 @media screen and (min-width: 64em) {
63 .pure-u-lg-0 { display: none !important; }
64 .pure-u-lg-visible { display: inline-block !important; }
65 }
66 @media screen and (min-width: 80em) {
67 .pure-u-xl-0 { display: none !important; }
68 .pure-u-xl-visible { display: inline-block !important; }
69 }
70
71 .pure-g [class*="pure-u"]{
72 font-family: Roboto Slab, Arial, sans-serif;
73 }
74
75 /**
76 * Make pure-extras alert closable.
77 */
78 .pure-alert-closable .fa-times {
79 float: right;
80 }
81 .pure-alert-close {
82 cursor: pointer;
83 }
84
85 .pure-alert-success {
86 background-color: #1b926c;
87 }
88
89 .anchor:target {
90 padding-top: 40px;
91 }
92 /**
93 * MENU
94 **/
95 .shaarli-menu {
96 position: fixed;
97 top: 0;
98 width: 100%;
99 --height: 50px;
100 background: #1b926c;
101 -webkit-font-smoothing: antialiased;
102 /* Hack to transition with auto height: http://stackoverflow.com/a/8331169/1484919 */
103 max-height: 45px;
104 transition: max-height 0.5s;
105 overflow: hidden;
106 z-index: 999;
107 }
108
109 /* Chrome bugfix: with 100% height, it only displays the first element. */
110 .pure-menu-item {
111 height: 45px;
112 }
113
114 .shaarli-menu.open {
115 max-height: 500px;
116 transition: max-height 0.75s;
117 }
118
119 .head-logo {
120 float: left;
121 margin: 0 5px 0 0;
122 }
123
124 .pure-menu-link,
125 .pure-menu-link:visited,
126 .pure-menu-selected .pure-menu-link,
127 .pure-menu-selected .pure-menu-link:visited {
128 padding: 0.8em 1em;
129 color: #f5f5f5;
130 }
131
132 .pure-menu-link:hover, .pure-menu-link:focus,
133 .pure-menu-selected .pure-menu-link:hover,
134 .pure-menu-selected .pure-menu-link:focus {
135 color: #fff;
136 background: transparent;
137 }
138
139 .pure-menu-item:hover::after {
140 margin: -4px auto 0 auto;
141 display: block;
142 content:"";
143 background: #fff;
144 height: 4px;
145 width: 100%;
146 }
147
148 .menu-toggle {
149 width: 34px;
150 height: 45px;
151 position: absolute;
152 top: 5px;
153 right: 0;
154 display: none;
155 }
156
157 .menu-toggle .bar {
158 background-color: #b0ddce;
159 display: block;
160 width: 20px;
161 height: 2px;
162 border-radius: 100px;
163 position: absolute;
164 top: 18px;
165 right: 7px;
166 transition: all 0.5s;
167 }
168
169 .menu-toggle .bar:first-child {
170 transform: translateY(-6px);
171 }
172
173 .menu-toggle.x .bar {
174 transform: rotate(45deg);
175 }
176
177 .menu-toggle.x .bar:first-child {
178 transform: rotate(-45deg);
179 }
180
181 @media screen and (max-width: 64em) {
182 .menu-toggle {
183 display: block;
184 }
185 }
186
187 .header-buttons {
188 text-align: right;
189 }
190
191 .linkcount {
192 color: #252525;
193 font-size: 0.8em;
194 }
195
196 @media screen and (min-width: 64em) {
197 .linkcount {
198 position: absolute;
199 right: 5px;
200 }
201 }
202
203 #search, #search-linklist {
204 text-align: center;
205 width: 100%;
206 }
207
208 #search input[type="text"], #search-linklist input[type="text"] {
209 padding: 0 5px;
210 height: 30px;
211 width: 260px;
212 background: #f5f5f5;
213 border: medium none currentColor;
214 box-shadow: 0 1px 0 rgba(255, 255, 255, 0.078), 0 1px 1px rgba(0, 0, 0, 0.298) inset;
215 border-radius: 2px;
216 color: #252525;
217 }
218
219 /* because chrome */
220 #search input[type="text"]::-webkit-input-placeholder,
221 #search-linklist input[type="text"]::-webkit-input-placeholder {
222 color: #777777;
223 }
224
225 #search button,
226 #search-linklist button {
227 background: transparent;
228 border: none;
229 }
230
231 #search button {
232 color: #f5f5f5;
233 }
234
235 #search-linklist button {
236 color: #252525;
237 }
238
239 #search button:hover,
240 #search-linklist button:hover {
241 color: #fff;
242 }
243
244 #search-linklist {
245 padding: 5px 0;
246 }
247
248 @media screen and (min-width: 64em) {
249 #search .searchform,
250 #search-linklist .searchform {
251 margin-right: 25px;
252 text-align: right;
253 }
254
255 #search .tagfilter,
256 #search-linklist .tagfilter {
257 margin-left: 25px;
258 text-align: left;
259 }
260 }
261 @media screen and (max-width: 64em) {
262 #search, #search * {
263 visibility: hidden;
264 }
265 }
266
267 #header-login-form input[type="text"], #header-login-form input[type="password"] {
268 width: 200px;
269 }
270
271 /* because chrome */
272 #header-login-form input[type="text"]::-webkit-input-placeholder,
273 #header-login-form input[type="password"]::-webkit-input-placeholder {
274 color: #777777;
275 }
276
277 .subheader-form {
278 visibility: hidden;
279 position: fixed;
280 width: 100%;
281 text-align: center;
282 background: #1b926c;
283 display: block;
284 z-index: 999;
285 height: 30px;
286 padding: 5px 0;
287 }
288
289 @media screen and (min-width: 64em) {
290 .subheader-form.open, .subheader-form.open * {
291 visibility: visible;
292 }
293 }
294
295 .subheader-form input[type="text"], .subheader-form input[type="password"], .subheader-form .remember-me {
296 margin: 0 0 5px 0;
297 padding: 5px 5px 3px 15px;
298 height: 20px;
299 width: 20%;
300 background: #f5f5f5;
301 border: medium none currentColor;
302 border-radius: 2px;
303 box-shadow: 0 1px 0 rgba(255, 255, 255, 0.078), 0 1px 4px rgba(0, 0, 0, 0.298) inset;
304 color: #252525;
305 }
306
307 /* because chrome */
308 .subheader-form input[type="text"]::-webkit-input-placeholder,
309 .subheader-form input[type="password"]::-webkit-input-placeholder
310 {
311 color: #252525;
312 }
313
314 .subheader-form .remember-me {
315 display: inline-block;
316 width: auto;
317 padding: 5px 20px 3px 20px;
318 cursor: pointer;
319 }
320
321 .subheader-form .remember-me label, .subheader-form .remember-me input {
322 cursor: pointer;
323 }
324
325 .subheader-form input[type="submit"] {
326 display: inline-block;
327 margin: 0 0 5px 0;
328 padding: 4px 0 4px 0;
329 height: 28px;
330 width: 100px;
331 background: #1b926c;
332 border: 1px solid #f5f5f5;
333 color: #f5f5f5;
334 border-radius: 2px;
335 }
336
337 .subheader-form input[type="submit"]:hover {
338 background: #f5f5f5;
339 color: #1b926c;
340 }
341
342 .new-version-message {
343 text-align: center;
344 }
345
346 .new-version-message a {
347 color: rgb(151, 96, 13);
348 font-weight: bold;
349 }
350
351 /**
352 * CONTENT - GENERAL
353 */
354 #content {
355 position: relative;
356 z-index: 2;
357 margin-top: 45px;
358 }
359
360 /**
361 * Plugins additional forms
362 */
363 .toolbar-plugin {
364 margin: 5px 0;
365 text-align: center;
366 }
367
368 .toolbar-plugin input[type="text"] {
369 padding: 0 5px;
370 height: 30px;
371 width: 300px;
372 background: #f5f5f5;
373 border: medium none currentColor;
374 box-shadow: 0 1px 0 rgba(255, 255, 255, 0.078), 0 1px 1px rgba(0, 0, 0, 0.298) inset;
375 border-radius: 2px;
376 color: #252525;
377 }
378
379 /* because chrome */
380 .toolbar-plugin input[type="text"]::-webkit-input-placeholder {
381 color: #777777;
382 }
383
384 .toolbar-plugin input[type="submit"] {
385 padding: 0 10px;
386 height: 30px;
387 background: #f5f5f5;
388 border: medium none currentColor;
389 border-radius: 2px;
390 color: #252525;
391 }
392
393 .toolbar-plugin input[type="submit"]:hover {
394 background: #fff;
395 }
396
397 @media screen and (max-width: 64em) {
398 .toolbar-plugin input[type="text"] {
399 width: 70%;
400
401 }
402 }
403
404 /**
405 * CONTENT - LINKLIST PAGING
406 * 64em -> lg
407 */
408 .linklist-filters {
409 margin: 10px 0;
410 color: #252525;
411 font-size: 0.9em;
412 }
413
414 .linklist-filters a {
415 padding: 5px 8px;
416 text-decoration: none;
417 }
418
419 .linklist-filters .filter-off {
420 color: #252525;
421 background: #f5f5f5;
422 }
423
424 .linklist-filters .filter-on {
425 color: #b0ddce;
426 background: #1b926c;
427 }
428
429 .linklist-pages {
430 margin: 10px 0;
431 color: #252525;
432 text-align: center;
433 }
434
435 .linklist-pages a {
436 color: #252525;
437 text-decoration: none;
438 }
439
440 .linklist-pages a:hover {
441 color: #fff;
442 }
443
444 .linksperpage {
445 margin: 10px 0;
446 text-align: right;
447 color: #252525;
448 font-size: 0.9em;
449 }
450
451 .linksperpage a {
452 padding: 5px 5px;
453 text-decoration: none;
454 color: #252525;
455 background: #f5f5f5;
456 }
457
458 .linksperpage a, .linksperpage input[type="text"] {
459 display: inline-block;
460 width: 20px;
461 text-align: center;
462 }
463
464 .linksperpage form {
465 display: inline;
466 }
467
468 .linksperpage input[type="text"] {
469 height: 20px;
470 margin: 0;
471 padding: 4px 5px 3px 8px;
472 background: #f5f5f5;
473 border: medium none currentColor;
474 color: #252525;
475 font-size: 0.8em;
476 }
477
478 /**
479 * CONTENT - LINKLIST ITEMS
480 */
481 .linklist-item {
482 margin: 0 0 15px 0;
483 background: #f5f5f5;
484 box-shadow: 2px 2px 0.5em #797979;
485 }
486
487 .linklist-item-title, .linklist-item-title h2 {
488 margin: 0;
489 word-wrap: break-word;
490 }
491
492 .linklist-item-title {
493 position: relative;
494 background: #f5f5f5;
495 }
496
497 .linklist-item-title h2 {
498 padding: 3px 10px 0 10px;
499 line-height: 30px;
500 }
501
502 .linklist-item-title a {
503 font-size: 0.7em;
504 color: #252525;
505 text-decoration: none;
506 vertical-align: middle;
507 font-family: Roboto Slab, Arial, sans-serif;
508 }
509
510 .linklist-item-title .linklist-link {
511 font-size: 1.1em;
512 color: #1b926c;
513 }
514
515 .linklist-item-title .linklist-link:visited {
516 color: #1b926c;
517 }
518
519 .linklist-item-title a:hover, .linklist-item-title .linklist-link:hover{
520 color: #252525;
521 }
522
523
524 .linklist-item-title .label-private {
525 border: solid 1px #F89406;
526 font-family: Arial, sans-serif;
527 font-size: 0.65em;
528 color: #F89406;
529 }
530
531 .linklist-item-title .fold-button {
532 display: none;
533 }
534
535 .linklist-item-editbuttons {
536 float: right;
537 padding: 8px 5px;
538 }
539
540 .linklist-item-editbuttons * {
541 display: block;
542 float: left;
543 margin: 0 1px;
544 }
545
546 .linklist-item-editbuttons a {
547 font-size: 1em;
548 }
549
550 .edit-link {
551 font-size: 1.2em;
552 color: #0b5ea6;
553 }
554
555 .delete-link {
556 font-size: 1.3em;
557 color: #ac2925 !important;
558 }
559
560 .linklist-item-description {
561 position: relative;
562 padding: 10px;
563 font-family: Roboto Slab, Arial, sans-serif;
564 word-wrap: break-word;
565 color: #252525;
566 line-height: 1.3em;
567 }
568
569 {
570 position: absolute;
571 left: 3px;
572 top: 0;
573 display: block;
574 content:"";
575 background: #F89406;
576 height: 95%;
577 width: 2px;
578 z-index: 1;
579 }
580
581 .linklist-item-description a {
582 text-decoration: none;
583 color: #1b926c;
584 }
585
586 .linklist-item-description a:hover {
587 color: #252525;
588 }
589
590 .linklist-item-description a:visited {
591 color: #14553f;
592 }
593
594 .linklist-item-thumbnail {
595 position: relative;
596 margin-top: 10px;
597 padding: 10px;
598 float: left;
599 z-index: 50;
600 }
601
602 .linklist-item.private .linklist-item-title::before,
603 .linklist-item.private .linklist-item-description::before,
604 .linklist-item.private .linklist-item-thumbnail::before {
605 position: absolute;
606 left: 3px;
607 top: 0;
608 display: block;
609 content:"";
610 background: #F89406;
611 height: 95%;
612 width: 2px;
613 z-index: 1;
614 }
615
616 .linklist-item.private .linklist-item-title::before {
617 margin-top: 3px;
618 }
619
620 .linklist-item-infos {
621 padding: 8px 8px 5px 8px;
622 background: #ddd;
623 color: #252525;
624 }
625
626 .linklist-item-infos a {
627 color: #252525;
628 text-decoration: none;
629 }
630
631 .linklist-item-infos a:hover {
632 color: #000;
633 }
634
635 .linklist-item-infos .linklist-item-tags {
636 font-size: 0.8em;
637 }
638
639 .linklist-item-infos .label-tag {
640 font-size: 1em;
641 }
642
643 .linklist-item-infos-dateblock {
644 font-size: 0.9em;
645 }
646
647 .linklist-plugin-icon {
648 width: 13px;
649 height: 13px;
650 }
651
652 .linklist-item-infos-url {
653 text-align: right;
654 white-space: nowrap;
655 overflow: hidden;
656 text-overflow: ellipsis;
657 font-size: 0.8em;
658 }
659
660 .linklist-item-infos .mobile-buttons {
661 text-align: right;
662 }
663
664 .linklist-item-infos .linklist-plugin-icon {
665 display: inline-block;
666 margin: 0 2px;
667 width: 16px;
668 height: 16px;
669 }
670
671 /** 64em -> lg **/
672 @media screen and (max-width: 64em) {
673 .linklist-item-infos-url {
674 text-align: left;
675 }
676 }
677
678 /**
679 * Footer
680 */
681 #footer {
682 margin: 20px 0;
683 padding: 5px;
684 text-align: center;
685 color: #252525;
686 }
687
688 #footer:before {
689 display: block;
690 content:"";
691 background: linear-gradient(to right, #949393, #252525, #949393);
692 height: 1px;
693 width: 80%;
694 margin: 10px auto;
695 }
696
697 #footer a {
698 color: #252525;
699 }
700
701 /**
702 * PAGE FORM
703 */
704 .page-form {
705 margin: 20px 0 0 0;
706 background: #f5f5f5;
707 box-shadow: 1px 1px 2px #797979;
708 color: #252525;
709 overflow: hidden;
710 }
711
712 .page-form .window-title {
713 margin: 0 0 10px 0;
714 padding: 10px 0;
715 width: 100%;
716 color: #1b926c;
717 background: #f5f5f5;
718 text-align: center;
719 }
720
721 .page-form .window-subtitle {
722 text-align: center;
723 }
724
725 .page-form a {
726 color: #1b926c;
727 font-weight: bold;
728 }
729
730 .page-form p {
731 padding: 0 10px;
732 margin: 0;
733 }
734
735 .page-form input[type="text"],
736 .page-form input[type="password"],
737 .page-form textarea {
738 box-sizing: border-box;
739 margin: 10px 0;
740 padding: 5px 5px 3px 15px;
741 height: 35px;
742 width: 90%;
743 background: #eeeeee;
744 border: solid 1px #d8d8d8;
745 border-radius: 2px;
746 color: #252525;
747 }
748
749 .page-form textarea {
750 min-height: 240px;
751 padding: 15px 5px 3px 15px;
752 resize: vertical;
753 overflow-y: auto;
754 word-wrap:break-word
755 }
756
757 /* because chrome */
758 .page-form input[type="text"]::-webkit-input-placeholder,
759 .page-form input[type="password"]::-webkit-input-placeholder {
760 color: #777777;
761 }
762
763 .page-form input[type="submit"], .page-form a.button {
764 margin: 15px 5px;
765 height: 35px;
766 line-height: 35px;
767 width: 150px;
768 background: #1b926c;
769 color: #f5f5f5;
770 border: none;
771 box-shadow: 1px 1px 1px #ddd, -1px -1px 6px #ddd, -1px 1px 2px #ddd, 1px -1px 2px #ddd;
772 font-size: 1.2em;
773 text-decoration: none;
774 vertical-align: center;
775 font-weight: normal;
776 display: inline-block;
777 }
778
779
780 .page-form .button.button-red {
781 background: #ac2925;
782 }
783
784 .page-form .submit-buttons {
785 margin-bottom: 10px;
786 }
787
788 @media screen and (min-width: 64em) {
789 .page-form .submit-buttons {
790 position: relative;
791 }
792
793 .page-form .submit-buttons .button.button-red {
794 position: absolute;
795 right: 5%;
796 }
797 }
798
799 @media screen and (max-width: 64em) {
800 .page-form .submit-buttons .button {
801 display: block;
802 margin: auto;
803 }
804 }
805
806 .page-form select {
807 color: #252525;
808 }
809
810 /**
811 * PAGE FORM - LIGHT
812 */
813 .page-form-light div, .page-form-light p {
814 text-align: center;
815 }
816
817 /**
818 * PAGE FORM - COMPLETE
819 */
820 .page-form-complete {
821 #background: #f5f5f5;
822 }
823
824 .page-form-complete div, .page-form-complete p {
825 color: #252525;
826 }
827
828 .page-form-complete .form-label, .page-form-complete .form-input {
829 position: relative;
830 height: 60px;
831 }
832
833 .page-form-complete .form-label label,
834 .page-form-complete .form-input input,
835 .page-form-complete .form-input select.align,
836 .page-form-complete .timezone {
837 position: absolute;
838 top: 50%;
839 transform: translateY(-50%);
840 }
841
842 .page-form-complete .form-label label {
843 text-align: right;
844 right: 0;
845 padding: 0 20px;
846 }
847
848 .page-form-complete .label-name {
849 font-weight: bold;
850 }
851
852 .page-form-complete .label-desc {
853 font-size: 0.8em;
854 }
855
856 .page-form-complete input[type="text"],
857 .page-form-complete input[type="password"],
858 .page-form-complete textarea {
859 margin: 0;
860 }
861
862 .page-form section {
863 margin: 10px 0 25px 0;
864 }
865
866 .page-form table {
867 margin: auto;
868 width: 90%;
869 }
870
871 .page-form table .order {
872 text-decoration: none;
873 color: #252525;
874 }
875
876 .page-form table, .page-form th, .page-form td {
877 border-width: 1px 0;
878 border-style: solid;
879 border-color: #aaaaaa;
880 }
881
882 .page-form th, .page-form td {
883 padding: 5px;
884
885 }
886
887 /* Awesomeplete fix */
888 div.awesomplete {
889 width: inherit;
890 }
891
892 div.awesomplete > input {
893 display: inherit;
894 }
895
896 div.awesomplete > ul {
897 z-index: 9999;
898 }
899
900 .page-form .awesomplete {
901 width: 90%;
902 }
903
904 .page-form .awesomplete input {
905 width: 100%;
906 }
907
908 .page-form div.awesomplete > ul {
909 color: black;
910 }
911
912 @media screen and (max-width: 64em) {
913 .page-form-complete .form-label {
914 height: inherit;
915 }
916
917 .page-form-complete .form-label label,
918 .page-form-complete .form-input input,
919 .page-form-complete .timezone {
920 position: inherit;
921 top: inherit;
922 transform: translateY(0);
923 }
924
925 .page-form-complete .form-input input[type="checkbox"] {
926 position: absolute;
927 top: 50%;
928 right: 50%;
929 transform: translateY(-50%);
930 }
931
932 .page-form-complete .form-input {
933 text-align: center;
934 }
935
936 .page-form-complete .form-label label {
937 display: block;
938 text-align: left;
939 margin: 10px 0 0 0;
940 }
941
942 .timezone-continent:after {
943 content:"\a\a";
944 white-space: pre;
945 }
946
947 .page-form-complete .radio-buttons {
948 text-align: left;
949 padding: 5px 15px;
950 }
951 }
952
953 /**
954 * Page visitor (page form extended)
955 */
956 .page-visitor {
957 color: #252525;
958 }
959
960 #page404 {
961 color: #3f3f3f;
962 }
963
964 /**
965 * LOGIN
966 */
967 #login-form .remember-me {
968 margin: 5px 0;
969 }
970
971 /**
972 * Search results
973 */
974 .search-result a {
975 color: white;
976 text-decoration: none;
977 }
978
979 .search-result .label-tag {
980 border-color: white;
981 }
982
983 .search-result .label-tag .remove {
984 border-left: white 1px solid;
985 padding: 0 0 0 5px;
986 margin: 0 0 0 5px;
987 }
988
989 .search-result .label-private {
990 border: 1px solid white;
991 }
992
993 /**
994 * TOOLS
995 */
996 .tools-item {
997 margin: 10px 0;
998 }
999
1000 .tools-item .pure-button:hover {
1001 background-image: none;
1002 background-color: #1b926c;
1003 color: #f5f5f5;
1004 }
1005
1006 /**
1007 * PLUGIN ADMIN
1008 */
1009 #pluginform .mobile-row {
1010 font-size: 0.9em;
1011 }
1012
1013 #pluginform .more {
1014 margin-top: 10px;
1015 }
1016
1017 @media screen and (max-width: 64em) {
1018 #pluginform .main-row, #pluginform .main-row td {
1019 border-bottom-style: none;
1020 }
1021
1022 #pluginform .mobile-row, #pluginform .mobile-row td {
1023 border-top-style: none;
1024 }
1025 }
1026
1027 /**
1028 * IMPORT
1029 */
1030 #import-field {
1031 margin: 15px 0;
1032 }
1033
1034 /**
1035 * TAG CLOUD
1036 */
1037 #cloudtag {
1038 padding: 10px;
1039 text-align: center;
1040 }
1041
1042 #cloudtag, #cloudtag a {
1043 color: #000;
1044 text-decoration: none;
1045 }
1046
1047 #cloudtag .count {
1048 color: #7f7f7f;
1049 }
1050
1051 /**
1052 * Picture wall CSS
1053 */
1054 #picwall_container {
1055 margin: 0 10px 10px 10px;
1056 color: #252525;
1057 background-color: #f5f5f5;
1058 clear: both;
1059 }
1060
1061 .picwall_pictureframe {
1062 margin: 2px;
1063 background-color: #f5f5f5;
1064 z-index: 5;
1065 position: relative;
1066 display: table-cell;
1067 vertical-align: middle;
1068 width: 90px;
1069 height: 90px;
1070 overflow: hidden;
1071 text-align: center;
1072 float: left;
1073 }
1074
1075 .b-lazy {
1076 -webkit-transition: opacity 500ms ease-in-out;
1077 -moz-transition: opacity 500ms ease-in-out;
1078 -o-transition: opacity 500ms ease-in-out;
1079 transition: opacity 500ms ease-in-out;
1080 opacity: 0;
1081 }
1082 .b-lazy.b-loaded {
1083 opacity: 1;
1084 }
1085
1086 .picwall_pictureframe img {
1087 max-width: 100%;
1088 height: auto;
1089 color: transparent;
1090 } /* Adapt the width of the image */
1091
1092 .picwall_pictureframe a {
1093 text-decoration: none;
1094 }
1095
1096 /* CSS to show title when hovering an image - no javascript required. */
1097 .picwall_pictureframe span.info {
1098 display: none;
1099 font-family: Arial, sans-serif;
1100 }
1101
1102 .picwall_pictureframe:hover span.info {
1103 display: block;
1104 position: absolute;
1105 top: 0;
1106 left: 0;
1107 width: 90px;
1108 height: 90px;
1109 font-weight: bold;
1110 font-size: 9pt;
1111 color: #f5f5f5;
1112 text-align: left;
1113 background-color: rgba(0, 0, 0, 0.8);
1114 }
1115
1116 /**
1117 * DAILY
1118 */
1119 .daily-desc {
1120 color: #7f7f7f;
1121 font-size: 0.8em;
1122 }
1123
1124 .daily-about a {
1125 color: #343434;
1126 text-decoration: none;
1127 }
1128
1129 .daily-about a:hover {
1130 color: #7f7f7f;
1131 }
1132
1133 .daily-about h3:before, .daily-about h3:after {
1134 display: block;
1135 content:"";
1136 background: linear-gradient(to right, #d5d4d4, #252525, #d5d4d4);
1137 height: 1px;
1138 width: 90%;
1139 margin: 10px auto;
1140 }
1141
1142 .daily-entry {
1143 padding: 0 10px;
1144 }
1145
1146 .daily-entry .daily-entry-title:after {
1147 display: block;
1148 content:"";
1149 background: linear-gradient(to right, #fff, #515151, #fff);
1150 height: 1px;
1151 width: 70%;
1152 margin: 5px auto;
1153 }
1154
1155 .daily-entry .daily-entry-title {
1156 margin: 10px 0 0 0;
1157 }
1158
1159 .daily-entry .daily-entry-title a {
1160 color: #000;
1161 text-decoration: none;
1162 }
1163
1164 .daily-entry .daily-entry-description {
1165 padding: 5px 5px 0 5px;
1166 font-size: 0.9em;
1167 text-align: justify;
1168 word-wrap: break-word;
1169 }
1170
1171 .daily-entry .daily-entry-tags {
1172 padding: 0 5px 5px 5px;
1173 font-size: 0.8em;
1174 }
1175
1176 .daily-entry-thumbnail {
1177 float: left;
1178 margin: 15px 5px 5px 15px;
1179 }
1180
1181 .daily-entry-description a {
1182 text-decoration: none;
1183 color: #1b926c;
1184 }
1185
1186 .daily-entry-description a:hover {
1187 text-shadow: 1px 1px #ddd;
1188 }
1189
1190 .daily-entry-description a:visited {
1191 color: #20b988;
1192 }
1193
1194 /*
1195 * Fix empty bookmarklet name in Firefox
1196 */
1197 .pure-button {
1198 -moz-user-select: auto;
1199 }