]> git.immae.eu Git - github/wallabag/wallabag.git/blob - app/Resources/static/themes/baggy/css/main.css
Assets work
[github/wallabag/wallabag.git] / app / Resources / static / themes / baggy / css / main.css
1 /* ==========================================================================
2 Sommaire
3
4 1 = Style Guide
5 2 = Layout
6 3 = Pictos
7 4 = Messages
8 5 = Article
9 6 = Media queries
10
11 ========================================================================== */
12
13 html {
14 min-height: 100%;
15 }
16
17 body {
18 background-color: #eee;
19 }
20
21 .login {
22 background-color: #333;
23 }
24
25 .login #main {
26 padding: 0;
27 margin: 0;
28 }
29
30 .login form {
31 background-color: #fff;
32 padding: 1.5em;
33 box-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
34 width: 20em;
35 position: absolute;
36 top: 8em;
37 left: 50%;
38 margin-left: -10em;
39 }
40
41 .login .logo {
42 position: absolute;
43 top: 2em;
44 left: 50%;
45 margin-left: -55px;
46 }
47
48 /* ==========================================================================
49 1 = Style Guide
50 ========================================================================== */
51
52 ::selection {
53 color: #fff;
54 background-color: #000;
55 }
56
57 .desktopHide {
58 display: none;
59 }
60
61 .logo {
62 position: fixed;
63 z-index: 20;
64 top: 0.4em;
65 left: 0.6em;
66 }
67
68 h2,
69 h3,
70 h4 {
71 font-family: "PT Sans", sans-serif;
72 text-transform: uppercase;
73 }
74
75 p,
76 li,
77 label {
78 color: #666;
79 }
80
81 a {
82 color: #000;
83 font-weight: bold;
84 }
85
86 a.nostyle {
87 text-decoration: none;
88 }
89
90 a:hover,
91 a:focus {
92 text-decoration: none;
93 }
94
95 form fieldset {
96 border: 0;
97 padding: 0;
98 margin: 0;
99 }
100
101 form input[type="text"],
102 form input[type="number"],
103 select,
104 form input[type="password"],
105 form input[type="url"],
106 form input[type="email"] {
107 border: 1px solid #999;
108 padding: 0.5em 1em;
109 min-width: 12em;
110 color: #666;
111 }
112
113 @media screen and (-webkit-min-device-pixel-ratio: 0) {
114 select {
115 -webkit-appearance: none;
116 border-radius: 0;
117 background: #fff url("../../_global/img/bg-select.png") no-repeat right center;
118 }
119 }
120
121 .inline .row {
122 display: inline-block;
123 margin-right: 0.5em;
124 }
125
126 .inline label {
127 min-width: 6em;
128 }
129
130 fieldset label {
131 display: inline-block;
132 min-width: 12.5em;
133 color: #666;
134 }
135
136 label {
137 margin-right: 0.5em;
138 }
139
140 form .row {
141 margin-bottom: 0.5em;
142 }
143
144 form button,
145 input[type="submit"] {
146 cursor: pointer;
147 background-color: #000;
148 color: #fff;
149 padding: 0.5em 1em;
150 display: inline-block;
151 border: 1px solid #000;
152 }
153
154 form button:hover,
155 form button:focus,
156 input[type="submit"]:hover,
157 input[type="submit"]:focus {
158 background-color: #fff;
159 color: #000;
160 -webkit-transition: all 0.5s ease;
161 -moz-transition: all 0.5s ease;
162 -ms-transition: all 0.5s ease;
163 -o-transition: all 0.5s ease;
164 transition: all 0.5s ease;
165 }
166
167 #bookmarklet {
168 cursor: move;
169 }
170
171 h2::after {
172 content: "";
173 height: 4px;
174 width: 70px;
175 background-color: #000;
176 display: block;
177 }
178
179 .links {
180 padding: 0;
181 margin: 0;
182 }
183
184 .links li {
185 list-style: none;
186 margin: 0;
187 padding: 0;
188 }
189
190 #links {
191 position: fixed;
192 top: 0;
193 width: 10em;
194 left: 0;
195 text-align: right;
196 background-color: #333;
197 padding-top: 9.5em;
198 height: 100%;
199 box-shadow: inset -4px 0 20px rgba(0, 0, 0, 0.6);
200 z-index: 15;
201 }
202
203 #main {
204 margin-left: 12em;
205 position: relative;
206 z-index: 10;
207 padding-right: 5%;
208 padding-bottom: 1em;
209 }
210
211 #links > li > a {
212 display: block;
213 padding: 0.5em 2em 0.5em 1em;
214 color: #fff;
215 position: relative;
216 text-transform: uppercase;
217 text-decoration: none;
218 font-weight: normal;
219 font-family: "PT Sans", sans-serif;
220 -webkit-transition: all 0.5s ease;
221 -moz-transition: all 0.5s ease;
222 -ms-transition: all 0.5s ease;
223 -o-transition: all 0.5s ease;
224 transition: all 0.5s ease;
225 }
226
227 #links > li > a:hover,
228 #links > li > a:focus {
229 background-color: #999;
230 color: #000;
231 }
232
233 #links .current::after {
234 content: "";
235 width: 0;
236 height: 0;
237 position: absolute;
238 border-style: solid;
239 border-width: 10px;
240 border-color: transparent #eee transparent transparent;
241 right: 0;
242 top: 50%;
243 margin-top: -10px;
244 }
245
246 #links li:last-child {
247 position: fixed;
248 bottom: 1em;
249 width: 10em;
250 }
251
252 #links li:last-child a::before {
253 font-size: 1.2em;
254 position: relative;
255 top: 2px;
256 }
257
258 #sort {
259 padding: 0;
260 list-style-type: none;
261 opacity: 0.5;
262 display: inline-block;
263 }
264
265 #sort li {
266 display: inline;
267 font-size: 0.9em;
268 }
269
270 #sort li + li {
271 margin-left: 10px;
272 }
273
274 #sort a {
275 padding: 2px 2px 0;
276 vertical-align: middle;
277 }
278
279 #sort img {
280 vertical-align: baseline;
281 }
282
283 #sort img:hover {
284 cursor: pointer;
285 }
286
287 #display-mode {
288 float: right;
289 margin-top: 10px;
290 margin-bottom: 10px;
291 opacity: 0.5;
292 }
293
294 #listmode {
295 width: 16px;
296 display: inline-block;
297 text-decoration: none;
298 }
299
300 #listmode a:hover {
301 opacity: 1;
302 }
303
304 #listmode.tablemode {
305 background-image: url("../img/baggy/table.png");
306 background-repeat: no-repeat;
307 background-position: bottom;
308 }
309
310 #listmode.listmode {
311 background-image: url("../img/baggy/list.png");
312 background-repeat: no-repeat;
313 background-position: bottom;
314 }
315
316 #warning_message {
317 position: fixed;
318 background-color: #ff6347;
319 z-index: 1000;
320 bottom: 0;
321 left: 0;
322 width: 100%;
323 color: #000;
324 }
325
326 /* ==========================================================================
327 2 = Layout
328 ========================================================================== */
329
330 #content {
331 margin-top: 2em;
332 min-height: 30em;
333 }
334
335 footer {
336 text-align: right;
337 position: relative;
338 bottom: 0;
339 right: 5em;
340 color: #999;
341 font-size: 0.8em;
342 font-style: italic;
343 z-index: 20;
344 }
345
346 footer a {
347 color: #999;
348 font-weight: normal;
349 }
350
351 .list-entries {
352 letter-spacing: -5px;
353 }
354
355 .listmode .entry {
356 width: 100% !important;
357 margin-left: 0 !important;
358 }
359
360 .card-entry-labels {
361 position: absolute;
362 top: 100px;
363 left: -1em;
364 z-index: 90;
365 max-width: 50%;
366 padding-left: 0;
367 }
368
369 .card-entry-labels li {
370 margin: 10px 10px 10px auto;
371 padding: 5px 12px 5px 25px;
372 background-color: rgba(0, 0, 0, 0.6);
373 border-radius: 0 3px 3px 0;
374 color: #fff;
375 cursor: default;
376 max-height: 2em;
377 overflow: hidden;
378 text-overflow: ellipsis;
379 white-space: nowrap;
380 }
381
382 .card-entry-tags {
383 max-height: 2em;
384 overflow-y: hidden;
385 padding: 0;
386 }
387
388 .card-entry-tags li {
389 display: inline-block;
390 margin: 0 5px;
391 padding: 5px 12px;
392 background-color: rgba(0, 0, 0, 0.6);
393 border-radius: 3px;
394 max-height: 2em;
395 overflow: hidden;
396 text-overflow: ellipsis;
397 color: #fff;
398 }
399
400 .list-entries + .results {
401 margin-bottom: 2em;
402 }
403
404 .estimatedTime .reading-time {
405 color: #999;
406 font-style: italic;
407 font-weight: normal;
408 font-size: 0.9em;
409 }
410
411 .estimatedTime small {
412 position: relative;
413 top: -1px;
414 }
415
416 .entry {
417 background-color: #fff;
418 letter-spacing: normal;
419 box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
420 display: inline-block;
421 width: 32%;
422 margin-bottom: 1.5em;
423 vertical-align: top;
424 margin-right: 1%;
425 position: relative;
426 overflow: hidden;
427 padding: 1.5em 1.5em 3em;
428 height: 440px;
429 }
430
431 .entry::before {
432 content: "";
433 width: 0;
434 height: 0;
435 border-style: solid;
436 border-color: transparent transparent #000;
437 border-width: 10px;
438 position: absolute;
439 bottom: 0.3em;
440 z-index: 10;
441 right: 1.5em;
442 -webkit-transition: all 0.5s ease;
443 -moz-transition: all 0.5s ease;
444 -ms-transition: all 0.5s ease;
445 -o-transition: all 0.5s ease;
446 transition: all 0.5s ease;
447 }
448
449 .entry::after {
450 content: "";
451 position: absolute;
452 height: 7px;
453 width: 100%;
454 bottom: 0;
455 left: 0;
456 background-color: #000;
457 -webkit-transition: all 0.5s ease;
458 -moz-transition: all 0.5s ease;
459 -ms-transition: all 0.5s ease;
460 -o-transition: all 0.5s ease;
461 transition: all 0.5s ease;
462 }
463
464 .entry:hover {
465 box-shadow: 0 3px 10px rgba(0, 0, 0, 1);
466 }
467
468 .entry:hover::after {
469 height: 40px;
470 }
471
472 .entry:hover::before {
473 bottom: 2.4em;
474 }
475
476 .entry:hover h2 a {
477 color: #666;
478 }
479
480 .entry h2 {
481 text-transform: none;
482 margin-bottom: 0;
483 line-height: 1.2;
484 }
485
486 .entry h2::after {
487 content: none;
488 }
489
490 .entry h2 a {
491 display: block;
492 text-decoration: none;
493 color: #000;
494 word-wrap: break-word;
495 -webkit-transition: all 0.5s ease;
496 -moz-transition: all 0.5s ease;
497 -ms-transition: all 0.5s ease;
498 -o-transition: all 0.5s ease;
499 transition: all 0.5s ease;
500 }
501
502 img.preview {
503 max-width: calc(100% + 3em);
504 left: -1.5em;
505 position: relative;
506 }
507
508 .entry p {
509 color: #666;
510 font-size: 0.9em;
511 line-height: 1.7;
512 }
513
514 .entry h2 a::first-letter {
515 text-transform: uppercase;
516 }
517
518 .entry:hover .tools {
519 bottom: 0;
520 }
521
522 .entry .tools {
523 position: absolute;
524 bottom: -50px;
525 left: 0;
526 width: 100%;
527 z-index: 10;
528 padding-right: 0.5em;
529 text-align: right;
530 -webkit-transition: all 0.5s ease;
531 -moz-transition: all 0.5s ease;
532 -ms-transition: all 0.5s ease;
533 -o-transition: all 0.5s ease;
534 transition: all 0.5s ease;
535 }
536
537 .entry .tools a {
538 color: #666;
539 text-decoration: none;
540 display: block;
541 padding: 0.4em;
542 }
543
544 .entry .tools a:hover {
545 color: #fff;
546 }
547
548 .entry .tools li {
549 display: inline-block;
550 }
551
552 .entry:nth-child(3n+1) {
553 margin-left: 0;
554 }
555
556 .results {
557 letter-spacing: -5px;
558 padding: 0 0 0.5em;
559 }
560
561 .results > * {
562 display: inline-block;
563 vertical-align: top;
564 letter-spacing: normal;
565 width: 50%;
566 text-align: right;
567 }
568
569 div.pagination ul {
570 text-align: right;
571 margin-bottom: 50px;
572 }
573
574 .nb-results {
575 text-align: left;
576 font-style: italic;
577 color: #999;
578 }
579
580 div.pagination ul > * {
581 display: inline-block;
582 margin-left: 0.5em;
583 }
584
585 div.pagination ul a {
586 color: #999;
587 text-decoration: none;
588 }
589
590 div.pagination ul a:hover,
591 div.pagination ul a:focus {
592 text-decoration: underline;
593 }
594
595 div.pagination ul .prev.disabled,
596 div.pagination ul .next.disabled {
597 display: none;
598 }
599
600 div.pagination ul .current {
601 height: 25px;
602 padding: 4px 8px;
603 border: 1px solid #d5d5d5;
604 text-decoration: none;
605 font-weight: bold;
606 color: #000;
607 background-color: #ccc;
608 }
609
610 /* ==========================================================================
611 2.1 = "save a link" related styles
612 ========================================================================== */
613
614 .popup-form {
615 background: rgba(0, 0, 0, 0.5);
616 position: absolute;
617 top: 0;
618 left: 10em;
619 z-index: 20;
620 height: 100%;
621 width: 100%;
622 margin: 0;
623 margin-top: -30% !important;
624 padding: 2em;
625 display: none;
626 border-left: 1px #eee solid;
627 }
628
629 .popup-form form {
630 background-color: #fff;
631 position: absolute;
632 top: 0;
633 left: 0;
634 z-index: 20;
635 border: 10px solid #000;
636 width: 400px;
637 height: 200px;
638 padding: 2em;
639 }
640
641 #bagit-form-form .addurl {
642 margin-left: 0;
643 }
644
645 .closeMessage,
646 .close-button {
647 background-color: #000;
648 color: #fff;
649 font-size: 1.2em;
650 line-height: 1.6;
651 width: 1.6em;
652 height: 1.6em;
653 text-align: center;
654 text-decoration: none;
655 }
656
657 .closeMessage:hover,
658 .closeMessage:focus,
659 .close-button:hover,
660 .close-button:focus {
661 background-color: #999;
662 color: #000;
663 }
664
665 .close-button--popup {
666 display: inline-block;
667 position: absolute;
668 top: 0;
669 right: 0;
670 font-size: 1.4em;
671 }
672
673 .active-current {
674 background-color: #999;
675 }
676
677 .active-current::after {
678 content: "";
679 width: 0;
680 height: 0;
681 position: absolute;
682 border-style: solid;
683 border-width: 10px;
684 border-color: transparent #eee transparent transparent;
685 right: 0;
686 top: 50%;
687 margin-top: -10px;
688 }
689
690 .opacity03 {
691 opacity: 0.3;
692 }
693
694 .add-to-wallabag-link-after {
695 background-color: #000;
696 color: #fff;
697 padding: 0 3px 2px;
698 }
699
700 a.add-to-wallabag-link-after {
701 visibility: hidden;
702 position: absolute;
703 opacity: 0;
704 transition-duration: 2s;
705 transition-timing-function: ease-out;
706 }
707
708 #article article a:hover + a.add-to-wallabag-link-after,
709 a.add-to-wallabag-link-after:hover {
710 opacity: 1;
711 visibility: visible;
712 transition-duration: 0.3s;
713 transition-timing-function: ease-in;
714 }
715
716 a.add-to-wallabag-link-after::after {
717 content: "w";
718 }
719
720 #add-link-result {
721 font-weight: bold;
722 font-size: 0.9em;
723 }
724
725 .btn-clickable {
726 cursor: pointer;
727 }
728
729 /* ==========================================================================
730 3 = Pictos
731 ========================================================================== */
732
733 @font-face {
734 font-family: icomoon;
735 src: url("../fonts/icomoon.eot?-s0mcsx");
736 src:
737 url("../fonts/icomoon.eot?#iefix-s0mcsx") format("embedded-opentype"),
738 url("../fonts/icomoon.woff?-s0mcsx") format("woff"),
739 url("../fonts/icomoon.ttf?-s0mcsx") format("truetype"),
740 url("../fonts/icomoon.svg?-s0mcsx#icomoon") format("svg");
741 font-weight: normal;
742 font-style: normal;
743 }
744
745 @font-face {
746 font-family: 'Material Icons';
747 font-style: normal;
748 font-weight: 400;
749 src: url(../fonts/MaterialIcons-Regular.eot);
750
751 /* For IE6-8 */
752 src: local("Material Icons"), local("MaterialIcons-Regular"), url(../fonts/MaterialIcons-Regular.woff2) format("woff2"), url(../fonts/MaterialIcons-Regular.woff) format("woff"), url(../fonts/MaterialIcons-Regular.ttf) format("truetype");
753 }
754
755 .material-icons {
756 font-family: 'Material Icons';
757 font-weight: normal;
758 font-style: normal;
759 font-size: 1em; /* Preferred icon size */
760 width: 1em;
761 height: 1em;
762 display: inline-block;
763 line-height: 1;
764 text-transform: none;
765 letter-spacing: normal;
766 word-wrap: normal;
767 white-space: nowrap;
768 direction: ltr;
769
770 /* Support for all WebKit browsers. */
771 -webkit-font-smoothing: antialiased;
772
773 /* Support for Safari and Chrome. */
774 text-rendering: optimizeLegibility;
775
776 /* Support for Firefox. */
777 -moz-osx-font-smoothing: grayscale;
778
779 /* Support for IE. */
780 font-feature-settings: 'liga';
781 }
782
783 .material-icons.md-18 { font-size: 18px; }
784 .material-icons.md-24 { font-size: 24px; }
785 .material-icons.md-36 { font-size: 36px; }
786 .material-icons.md-48 { font-size: 48px; }
787
788 .icon span,
789 .icon-image span {
790 position: absolute;
791 top: -9999px;
792 }
793
794 [class^="icon-"]::before,
795 [class*=" icon-"]::before {
796 font-family: icomoon;
797 speak: none;
798 font-style: normal;
799 font-weight: normal;
800 font-variant: normal;
801 text-transform: none;
802 line-height: 1;
803
804 /* Better Font Rendering =========== */
805 -webkit-font-smoothing: antialiased;
806 -moz-osx-font-smoothing: grayscale;
807 }
808
809 .icon-flattr::before {
810 content: "\ead4";
811 }
812
813 .icon-mail::before {
814 content: "\ea86";
815 }
816
817 .icon-up-open::before {
818 content: "\e80b";
819 }
820
821 .icon-star::before {
822 content: "\e9d9";
823 }
824
825 .icon-check::before {
826 content: "\ea10";
827 }
828
829 .icon-link::before {
830 content: "\e9cb";
831 }
832
833 .icon-reply::before {
834 content: "\e806";
835 }
836
837 .icon-menu::before {
838 content: "\e9bd";
839 }
840
841 .icon-clock::before {
842 content: "\e803";
843 }
844
845 .icon-twitter::before {
846 content: "\ea91";
847 }
848
849 .icon-down-open::before {
850 content: "\e809";
851 }
852
853 .icon-trash::before {
854 content: "\e9ac";
855 }
856
857 .icon-delete::before {
858 content: "\ea0d";
859 }
860
861 .icon-power::before {
862 content: "\ea14";
863 }
864
865 .icon-arrow-up-thick::before {
866 content: "\ea3a";
867 }
868
869 .icon-rss::before {
870 content: "\e808";
871 }
872
873 .icon-print::before {
874 content: "\e954";
875 }
876
877 .icon-reload::before {
878 content: "\ea2e";
879 }
880
881 .icon-price-tags::before {
882 content: "\e936";
883 }
884
885 /* .icon-image class, for image-based icons
886 ========================================================================== */
887
888 .icon-image {
889 background-size: 16px 16px;
890 background-repeat: no-repeat;
891 background-position: center;
892 padding-right: 1em !important;
893 padding-left: 1em !important;
894 }
895
896 /* Carrot (http://carrot.org) */
897 .icon-image--carrot {
898 background-image: url("../../_global/img/icons/carrot-icon--white.png");
899 }
900
901 /* Diaspora */
902 .icon-image--diaspora {
903 background-image: url("../../_global/img/icons/diaspora-icon--black.png");
904 }
905
906 /* ==========================================================================
907 Icon selected
908 ========================================================================== */
909
910 .icon-star.fav::before {
911 color: #fff;
912 }
913
914 .icon-check.archive::before {
915 color: #fff;
916 }
917
918 /* ==========================================================================
919 4 = Messages
920 ========================================================================== */
921
922 .messages {
923 text-align: left;
924 margin-top: 1em;
925 }
926
927 .messages > * {
928 display: inline-block;
929 }
930
931 .warning {
932 font-weight: bold;
933 display: block;
934 width: 100%;
935 }
936
937 .more-info {
938 font-size: 0.85em;
939 line-height: 1.5;
940 color: #aaa;
941 }
942
943 .more-info a {
944 color: #aaa;
945 }
946
947 /* ==========================================================================
948 5 = Article
949 ========================================================================== */
950
951 #article {
952 width: 70%;
953 margin-bottom: 3em;
954 text-align: justify;
955 }
956
957 #article .tags {
958 margin-bottom: 1em;
959 }
960
961 #article i {
962 font-style: normal;
963 }
964
965 blockquote {
966 border: 1px solid #999;
967 background-color: #fff;
968 padding: 1em;
969 margin: 0;
970 }
971
972 #article h1 {
973 text-align: left;
974 }
975
976 #article h2,
977 #article h3,
978 #article h4 {
979 text-transform: none;
980 }
981
982 #article h2::after {
983 content: none;
984 }
985
986 .topPosF {
987 position: fixed;
988 right: 20%;
989 bottom: 2em;
990 font-size: 1.5em;
991 }
992
993 #article_toolbar {
994 margin-bottom: 1em;
995 }
996
997 #article_toolbar li {
998 display: inline-block;
999 }
1000
1001 #article_toolbar a {
1002 background-color: #000;
1003 padding: 0.3em 0.5em 0.2em;
1004 color: #fff;
1005 text-decoration: none;
1006 }
1007
1008 #article_toolbar a:hover,
1009 #article_toolbar a:focus {
1010 background-color: #999;
1011 }
1012
1013 #nav-btn-add-tag {
1014 cursor: pointer;
1015 }
1016
1017 .shaarli::before {
1018 content: "*";
1019 }
1020
1021 .return {
1022 text-decoration: none;
1023 margin-top: 1em;
1024 display: block;
1025 }
1026
1027 .return::before {
1028 margin-right: 0.5em;
1029 }
1030
1031 .notags {
1032 font-style: italic;
1033 color: #999;
1034 }
1035
1036 .icon-rss {
1037 background-color: #000;
1038 color: #fff;
1039 padding: 0.2em 0.5em;
1040 }
1041
1042 .icon-rss::before {
1043 position: relative;
1044 top: 2px;
1045 }
1046
1047 .list-tags li {
1048 margin-bottom: 0.5em;
1049 }
1050
1051 .list-tags .icon-rss:hover,
1052 .list-tags .icon-rss:focus {
1053 background-color: #fff;
1054 color: #000;
1055 text-decoration: none;
1056 }
1057
1058 .list-tags a {
1059 text-decoration: none;
1060 }
1061
1062 .list-tags a:hover,
1063 .list-tags a:focus {
1064 text-decoration: underline;
1065 }
1066
1067 pre code {
1068 font-family: "Courier New", Courier, monospace;
1069 }
1070
1071 #filters {
1072 position: fixed;
1073 width: 20%;
1074 height: 100%;
1075 top: 0;
1076 right: 0;
1077 background-color: #fff;
1078 padding: 15px;
1079 padding-right: 30px;
1080 padding-top: 30px;
1081 border-left: 1px #333 solid;
1082 z-index: 12;
1083 min-width: 300px;
1084 }
1085
1086 #filters form .filter-group {
1087 margin: 5px;
1088 }
1089
1090 #download-form {
1091 position: fixed;
1092 width: 10%;
1093 height: 100%;
1094 top: 0;
1095 right: 0;
1096 background-color: #fff;
1097 padding: 15px;
1098 padding-right: 30px;
1099 padding-top: 30px;
1100 border-left: 1px #333 solid;
1101 z-index: 12;
1102 min-width: 200px;
1103 }
1104
1105 #download-form li {
1106 display: block;
1107 padding: 0.5em 2em 0.5em 1em;
1108 color: #fff;
1109 position: relative;
1110 text-transform: uppercase;
1111 text-decoration: none;
1112 font-weight: 400;
1113 font-family: PT Sans, sans-serif;
1114 transition: all 0.5s ease;
1115 }
1116
1117 /* ==========================================================================
1118 6 = Media Queries
1119 ========================================================================== */
1120
1121 @media screen and (max-width: 1050px) {
1122 .entry {
1123 width: 49%;
1124 }
1125
1126 .entry:nth-child(3n+1) {
1127 margin-left: 1.5%;
1128 }
1129
1130 .entry:nth-child(2n+1) {
1131 margin-left: 0;
1132 }
1133 }
1134
1135 @media screen and (max-width: 900px) {
1136 #article {
1137 width: 80%;
1138 }
1139
1140 .topPosF {
1141 right: 2.5em;
1142 }
1143 }
1144
1145 @media screen and (max-width: 700px) {
1146 .entry {
1147 width: 100%;
1148 margin-left: 0;
1149 }
1150
1151 #display-mode {
1152 display: none;
1153 }
1154 }
1155
1156 @media screen and (max-width: 500px) {
1157 .entry {
1158 width: 100%;
1159 margin-left: 0;
1160 }
1161
1162 body > header {
1163 background-color: #333;
1164 position: fixed;
1165 top: 0;
1166 width: 100%;
1167 height: 3em;
1168 z-index: 11;
1169 }
1170
1171 #links li:last-child {
1172 position: static;
1173 width: auto;
1174 }
1175
1176 #links li:last-child a::before {
1177 content: none;
1178 }
1179
1180 .logo {
1181 width: 1.25em;
1182 height: 1.25em;
1183 left: 0;
1184 top: 0;
1185 }
1186
1187 .login > header {
1188 position: static;
1189 }
1190
1191 .login form {
1192 width: 100%;
1193 position: static;
1194 margin-left: 0;
1195 }
1196
1197 .login .logo {
1198 height: auto;
1199 top: 0.5em;
1200 width: 75px;
1201 margin-left: -37.5px;
1202 }
1203
1204 .desktopHide {
1205 display: block;
1206 position: fixed;
1207 z-index: 20;
1208 top: 0;
1209 right: 0;
1210 border: 0;
1211 width: 2.5em;
1212 height: 2.5em;
1213 cursor: pointer;
1214 background-color: #999;
1215 font-size: 1.2em;
1216 }
1217
1218 .desktopHide:hover,
1219 .desktopHide:focus {
1220 background-color: #fff;
1221 }
1222
1223 #links {
1224 display: none;
1225 width: 100%;
1226 height: auto;
1227 padding-top: 3em;
1228 }
1229
1230 #links.menu--open {
1231 display: block;
1232 }
1233
1234 footer {
1235 position: static;
1236 margin-right: 3em;
1237 }
1238
1239 #main {
1240 margin-left: 1.5em;
1241 padding-right: 1.5em;
1242 position: static;
1243 margin-top: 3em;
1244 }
1245
1246 .card-entry-labels {
1247 display: none;
1248 }
1249
1250 #article_toolbar .topPosF {
1251 display: none;
1252 }
1253
1254 #article {
1255 width: 100%;
1256 }
1257
1258 #article h1 {
1259 font-size: 1.5em;
1260 }
1261
1262 #article_toolbar a {
1263 padding: 0.3em 0.4em 0.2em;
1264 }
1265
1266 #display-mode {
1267 display: none;
1268 }
1269
1270 .popup-form,
1271 #bagit-form,
1272 #search-form {
1273 left: 0;
1274 width: 100%;
1275 border-left: none;
1276 }
1277
1278 .popup-form form,
1279 #bagit-form form,
1280 #search-form form {
1281 width: 100%;
1282 }
1283 }