]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tpl/default/css/shaarli.css
Fixes #806: display overflow for awesomplete list
[github/shaarli/Shaarli.git] / tpl / default / css / shaarli.css
CommitLineData
402b0346
A
1/**
2 * General
3 */
4body {
70401690 5 background: #d0d0d0;
402b0346
A
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
33pre {
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
70401690
A
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
402b0346
A
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
70401690
A
393.toolbar-plugin input[type="submit"]:hover {
394 background: #fff;
395}
396
402b0346
A
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
402b0346
A
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;
402b0346
A
563 font-family: Roboto Slab, Arial, sans-serif;
564 word-wrap: break-word;
565 color: #252525;
566 line-height: 1.3em;
567}
568
70401690 569 {
402b0346
A
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 {
70401690 595 position: relative;
402b0346
A
596 margin-top: 10px;
597 padding: 10px;
598 float: left;
70401690
A
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;
402b0346
A
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
402b0346
A
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 {
70401690 750 min-height: 240px;
402b0346
A
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 .timezone {
836 position: absolute;
837 top: 50%;
838 transform: translateY(-50%);
839}
840
841.page-form-complete .form-label label {
842 text-align: right;
843 right: 0;
844 padding: 0 20px;
845}
846
847.page-form-complete .label-name {
848 font-weight: bold;
849}
850
851.page-form-complete .label-desc {
852 font-size: 0.8em;
853}
854
855.page-form-complete input[type="text"],
856.page-form-complete input[type="password"],
857.page-form-complete textarea {
858 margin: 0;
859}
860
861.page-form section {
862 margin: 10px 0 25px 0;
863}
864
865.page-form table {
866 margin: auto;
867 width: 90%;
868}
869
870.page-form table .order {
871 text-decoration: none;
872 color: #252525;
873}
874
875.page-form table, .page-form th, .page-form td {
876 border-width: 1px 0;
877 border-style: solid;
878 border-color: #aaaaaa;
879}
880
881.page-form th, .page-form td {
882 padding: 5px;
883
884}
885
886/* Awesomeplete fix */
887div.awesomplete {
888 width: inherit;
889}
890
891div.awesomplete > input {
892 display: inherit;
893}
894
895div.awesomplete > ul {
896 z-index: 9999;
897}
898
899.page-form .awesomplete {
900 width: 90%;
901}
902
903.page-form .awesomplete input {
904 width: 100%;
905}
906
907.page-form div.awesomplete > ul {
908 color: black;
909}
910
15162272
A
911form[name="linkform"].page-form {
912 overflow: visible;
913}
914
402b0346
A
915@media screen and (max-width: 64em) {
916 .page-form-complete .form-label {
917 height: inherit;
918 }
919
920 .page-form-complete .form-label label,
921 .page-form-complete .form-input input,
922 .page-form-complete .timezone {
923 position: inherit;
924 top: inherit;
925 transform: translateY(0);
926 }
927
928 .page-form-complete .form-input input[type="checkbox"] {
929 position: absolute;
930 top: 50%;
931 right: 50%;
932 transform: translateY(-50%);
933 }
934
935 .page-form-complete .form-input {
936 text-align: center;
937 }
938
939 .page-form-complete .form-label label {
940 display: block;
941 text-align: left;
942 margin: 10px 0 0 0;
943 }
944
945 .timezone-continent:after {
946 content:"\a\a";
947 white-space: pre;
948 }
949
950 .page-form-complete .radio-buttons {
951 text-align: left;
952 padding: 5px 15px;
953 }
954}
955
956/**
957 * Page visitor (page form extended)
958 */
959.page-visitor {
960 color: #252525;
961}
962
963#page404 {
964 color: #3f3f3f;
965}
966
967/**
968 * LOGIN
969 */
970#login-form .remember-me {
971 margin: 5px 0;
972}
973
974/**
975 * Search results
976 */
977.search-result a {
978 color: white;
979 text-decoration: none;
980}
981
982.search-result .label-tag {
983 border-color: white;
984}
985
986.search-result .label-tag .remove {
987 border-left: white 1px solid;
988 padding: 0 0 0 5px;
989 margin: 0 0 0 5px;
990}
991
7c26f662
A
992.search-result .label-private {
993 border: 1px solid white;
994}
995
402b0346
A
996/**
997 * TOOLS
998 */
999.tools-item {
1000 margin: 10px 0;
1001}
1002
1003.tools-item .pure-button:hover {
1004 background-image: none;
1005 background-color: #1b926c;
1006 color: #f5f5f5;
1007}
1008
1009/**
1010 * PLUGIN ADMIN
1011 */
1012#pluginform .mobile-row {
1013 font-size: 0.9em;
1014}
1015
1016#pluginform .more {
1017 margin-top: 10px;
1018}
1019
1020@media screen and (max-width: 64em) {
1021 #pluginform .main-row, #pluginform .main-row td {
1022 border-bottom-style: none;
1023 }
1024
1025 #pluginform .mobile-row, #pluginform .mobile-row td {
1026 border-top-style: none;
1027 }
1028}
1029
1030/**
1031 * IMPORT
1032 */
1033#import-field {
1034 margin: 15px 0;
1035}
1036
1037/**
1038 * TAG CLOUD
1039 */
1040#cloudtag {
1041 padding: 10px;
1042 text-align: center;
1043}
1044
1045#cloudtag, #cloudtag a {
1046 color: #000;
1047 text-decoration: none;
1048}
1049
1050#cloudtag .count {
1051 color: #7f7f7f;
1052}
1053
1054/**
1055 * Picture wall CSS
1056 */
1057#picwall_container {
1058 margin: 0 10px 10px 10px;
1059 color: #252525;
1060 background-color: #f5f5f5;
1061 clear: both;
1062}
1063
1064.picwall_pictureframe {
1065 margin: 2px;
1066 background-color: #f5f5f5;
1067 z-index: 5;
1068 position: relative;
1069 display: table-cell;
1070 vertical-align: middle;
1071 width: 90px;
1072 height: 90px;
1073 overflow: hidden;
1074 text-align: center;
1075 float: left;
1076}
1077
1078.b-lazy {
1079 -webkit-transition: opacity 500ms ease-in-out;
1080 -moz-transition: opacity 500ms ease-in-out;
1081 -o-transition: opacity 500ms ease-in-out;
1082 transition: opacity 500ms ease-in-out;
1083 opacity: 0;
1084}
1085.b-lazy.b-loaded {
1086 opacity: 1;
1087}
1088
1089.picwall_pictureframe img {
1090 max-width: 100%;
1091 height: auto;
1092 color: transparent;
1093} /* Adapt the width of the image */
1094
1095.picwall_pictureframe a {
1096 text-decoration: none;
1097}
1098
1099/* CSS to show title when hovering an image - no javascript required. */
1100.picwall_pictureframe span.info {
1101 display: none;
1102 font-family: Arial, sans-serif;
1103}
1104
1105.picwall_pictureframe:hover span.info {
1106 display: block;
1107 position: absolute;
1108 top: 0;
1109 left: 0;
1110 width: 90px;
1111 height: 90px;
1112 font-weight: bold;
1113 font-size: 9pt;
1114 color: #f5f5f5;
1115 text-align: left;
1116 background-color: rgba(0, 0, 0, 0.8);
1117}
1118
1119/**
1120 * DAILY
1121 */
1122.daily-desc {
1123 color: #7f7f7f;
1124 font-size: 0.8em;
1125}
1126
1127.daily-about a {
1128 color: #343434;
1129 text-decoration: none;
1130}
1131
1132.daily-about a:hover {
1133 color: #7f7f7f;
1134}
1135
1136.daily-about h3:before, .daily-about h3:after {
1137 display: block;
1138 content:"";
1139 background: linear-gradient(to right, #d5d4d4, #252525, #d5d4d4);
1140 height: 1px;
1141 width: 90%;
1142 margin: 10px auto;
1143}
1144
1145.daily-entry {
1146 padding: 0 10px;
1147}
1148
1149.daily-entry .daily-entry-title:after {
1150 display: block;
1151 content:"";
1152 background: linear-gradient(to right, #fff, #515151, #fff);
1153 height: 1px;
1154 width: 70%;
1155 margin: 5px auto;
1156}
1157
1158.daily-entry .daily-entry-title {
1159 margin: 10px 0 0 0;
1160}
1161
1162.daily-entry .daily-entry-title a {
1163 color: #000;
1164 text-decoration: none;
1165}
1166
1167.daily-entry .daily-entry-description {
1168 padding: 5px 5px 0 5px;
1169 font-size: 0.9em;
1170 text-align: justify;
1171 word-wrap: break-word;
1172}
1173
1174.daily-entry .daily-entry-tags {
1175 padding: 0 5px 5px 5px;
1176 font-size: 0.8em;
1177}
1178
1179.daily-entry-thumbnail {
1180 float: left;
70401690 1181 margin: 15px 5px 5px 15px;
402b0346
A
1182}
1183
1184.daily-entry-description a {
1185 text-decoration: none;
1186 color: #1b926c;
1187}
1188
1189.daily-entry-description a:hover {
1190 text-shadow: 1px 1px #ddd;
1191}
1192
1193.daily-entry-description a:visited {
1194 color: #20b988;
1195}
70401690
A
1196
1197/*
1198 * Fix empty bookmarklet name in Firefox
1199 */
1200.pure-button {
1201 -moz-user-select: auto;
1202}