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