]> git.immae.eu Git - github/wallabag/wallabag.git/blame - app/Resources/static/themes/material/css/main.css
Material: update size of text in article
[github/wallabag/wallabag.git] / app / Resources / static / themes / material / css / main.css
CommitLineData
5ecdfcd0
TC
1/* ==========================================================================
2 Sommaire
3
4 0 = Common
5 1 = Nav
6 2 = Side-nav
7 3 = Filters slider
8 4 = Cards
9 5 = Article
10 6 = Media queries
11 7 = Font
12 8 = Others
13
14 ========================================================================== */
15
16/* ==========================================================================
17 0 = Common
18 ========================================================================== */
19
34aa06a9
TC
20/**
21 *
22 * Material icons
23 *
24 */
5ecdfcd0
TC
25
26@font-face {
27 font-family: 'Material Icons';
28 font-style: normal;
29 font-weight: 400;
30 src: url(../fonts/MaterialIcons-Regular.eot);
1d4d9aaf 31
5ecdfcd0
TC
32 /* For IE6-8 */
33 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");
34}
35
36.material-icons {
37 font-family: 'Material Icons';
38 font-weight: normal;
39 font-style: normal;
40 font-size: 24px; /* Preferred icon size */
41 width: 1em;
42 height: 1em;
43 display: inline-block;
44 line-height: 1;
45 text-transform: none;
46 letter-spacing: normal;
47 word-wrap: normal;
48 white-space: nowrap;
49 direction: ltr;
50
51 /* Support for all WebKit browsers. */
52 -webkit-font-smoothing: antialiased;
1d4d9aaf 53
5ecdfcd0
TC
54 /* Support for Safari and Chrome. */
55 text-rendering: optimizeLegibility;
56
57 /* Support for Firefox. */
58 -moz-osx-font-smoothing: grayscale;
59
60 /* Support for IE. */
61 font-feature-settings: 'liga';
62}
63
34aa06a9
TC
64/* Rules for sizing the icon. */
65.material-icons.md-18 { font-size: 18px; }
66.material-icons.md-24 { font-size: 24px; }
67.material-icons.md-36 { font-size: 36px; }
68.material-icons.md-48 { font-size: 48px; }
69
70/* Rules for using icons as black on a light background. */
71.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
72.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }
73
74/* Rules for using icons as white on a dark background. */
75.material-icons.md-light { color: rgba(255, 255, 255, 1); }
76.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }
77
78/**
79 *
80 * Icomoon icons
81 *
82 */
83
84@font-face {
85 font-family: icomoon;
86 src: url("../fonts/IcoMoon-Free.ttf");
87 font-weight: normal;
88 font-style: normal;
89}
90
a494c33e
TC
91[class^="icon-"]::before,
92[class*=" icon-"]::before {
5ecdfcd0
TC
93 font-family: icomoon;
94 speak: none;
95 font-style: normal;
96 font-weight: normal;
97 font-variant: normal;
98 text-transform: none;
99 line-height: 1;
46d78f87 100 background-size: 24px;
5ecdfcd0 101
a494c33e
TC
102 /* Enable Ligatures ================ */
103 letter-spacing: 0;
104 -webkit-font-feature-settings: "liga";
105 -moz-font-feature-settings: "liga=1";
106 -moz-font-feature-settings: "liga";
107 -ms-font-feature-settings: "liga" 1;
108 -o-font-feature-settings: "liga";
109 font-feature-settings: "liga";
110
5ecdfcd0
TC
111 /* Better Font Rendering =========== */
112 -webkit-font-smoothing: antialiased;
113 -moz-osx-font-smoothing: grayscale;
114}
115
a494c33e 116.icon-image {
0c7f1ba7 117 background-size: 16px;
9f7d154e 118 background-repeat: no-repeat;
a494c33e
TC
119 padding-right: 1em !important;
120 padding-left: 1em !important;
121}
122
123.icon-eye::before {
124 content: "\e9ce";
125}
126
127.icon-no-eye::before {
128 content: "\e9d1";
129}
130
131.icon-calendar::before {
132 content: "\e953";
133}
134
0c7f1ba7 135.icon-mail::before {
c10adc1f 136 content: "\ea86";
0c7f1ba7
NL
137}
138
a494c33e
TC
139.icon-time::before {
140 content: "\e952";
141}
142
143/* Carrot (http://carrot.org) */
144.icon-image--carrot {
145 background-image: url("../../_global/img/icons/carrot-icon--black.png");
146}
147
148/* Diaspora */
149.icon-image--diaspora {
150 background-image: url("../../_global/img/icons/diaspora-icon--black.png");
151}
152
8a9604aa
NL
153/* Unmark.it */
154.icon-image--unmark {
155 background-image: url("../../_global/img/icons/unmark-icon--black.png");
156}
157
a494c33e
TC
158/* Shaarli */
159.icon-image--shaarli {
160 background-image: url("../../_global/img/icons/shaarli.png");
161}
162
5ecdfcd0
TC
163body {
164 display: flex;
165 min-height: 100vh;
166 flex-direction: column;
5b69e03e 167 background: #fafafa;
5ecdfcd0
TC
168}
169
170body.login main {
171 padding: 0;
cdd3010b 172 min-height: 100vh;
5ecdfcd0
TC
173}
174
175.border-bottom {
176 border-bottom: 1px solid #ddd;
177}
178
179nav,
180main,
181footer {
182 padding-left: 240px;
183}
184
185main,
186#content,
187.valign-wrapper {
188 height: 100%;
189}
190
191#main {
192 flex: 1 0 auto;
193}
194
195.results {
196 height: 1em;
197 line-height: 30px;
198}
199
200.results .nb-results,
201.results .pagination {
202 margin: 15px;
203 margin-bottom: 0;
204}
205
206.pagination {
1d4d9aaf 207 float: right;
5ecdfcd0
TC
208}
209
210.pagination ul {
1d4d9aaf 211 margin: 0 !important;
5ecdfcd0
TC
212}
213
214.pagination li {
215 padding: 0;
216}
217
218.pagination a {
219 padding: 0 10px;
220 height: 30px;
221 display: block;
222}
223
224.pagination .disabled {
1d4d9aaf
TC
225 margin-right: 10px;
226 margin-left: 10px;
5ecdfcd0
TC
227}
228
229div.pagination ul .prev.disabled,
230div.pagination ul .next.disabled {
231 display: none;
232}
233
234.pagination li.active span {
1d4d9aaf
TC
235 padding: 0 10px;
236 height: 30px;
237 display: block;
238 color: #fff;
5ecdfcd0
TC
239}
240
d56d416d
TC
241.page-footer .footer-copyright {
242 min-width: 50px;
243 height: auto !important;
244 line-height: 1em !important;
245}
246
5ecdfcd0 247.page-footer .footer-copyright p {
d56d416d
TC
248 text-overflow: ellipsis;
249 white-space: nowrap;
250 overflow: hidden;
251 display: block;
5ecdfcd0
TC
252}
253
254.hidden {
255 display: none;
256}
257
258.picker__date-display {
259 display: none;
260}
261
262footer.page-footer {
263 margin-top: 10px;
c146f694 264 padding-top: 0;
5ecdfcd0
TC
265}
266
267footer .row {
268 margin-bottom: 10px;
269}
270
271/* ==========================================================================
272 1 = Nav
273 ========================================================================== */
274
275nav input {
276 color: #aaa;
277}
278
279.nav-wrapper .button-collapse {
280 padding: 0 15px;
281}
282
283.nav-input {
284 display: none;
285}
286
287.nav-panels {
288 overflow: hidden;
289}
290
291.nav-panel-buttom li {
292 max-height: 64px;
293}
294
295.nav-panels {
296 transition: background 0.2s ease;
297}
298
299.nav-panel-add .add,
300.nav-panel-search .search,
301.nav-panels .close {
302 color: #444 !important;
303}
304
305.nav-panels .action {
306 padding-left: 0.75rem;
307 font-size: 2.1rem;
308 white-space: nowrap;
309}
310
311.nav-panels .input-field input {
312 display: block;
313 line-height: inherit;
314 padding-left: 4rem !important;
315 width: calc(100% - 8rem);
316}
317
318.nav-panels .input-field input:focus {
319 background-color: #fff;
320 border: 0;
321 box-shadow: none;
322 color: #444;
323}
324
ee122a75
NL
325.input-field.nav-panel-add label,
326.input-field.nav-panel-search label {
5ecdfcd0
TC
327 left: 1rem;
328}
329
ee122a75
NL
330.input-field.nav-panel-add .close,
331.input-field.nav-panel-search .close {
5ecdfcd0
TC
332 position: absolute;
333 top: 0;
334 right: 1rem;
335 color: transparent;
336 cursor: pointer;
337 font-size: 2rem;
338 transition: 0.3s color;
339}
340
341#button_filters {
342 display: none;
343}
344
345#button_export {
346 display: none;
347}
348
c146f694 349.input-field.nav-panel-add,
ee122a75
NL
350.input-field.nav-panel-add form,
351.input-field.nav-panel-search,
32f455c1 352.input-field.nav-panel-search form {
c146f694 353 height: 100%;
cdd3010b
JB
354}
355
5ecdfcd0
TC
356/* ==========================================================================
357 2 = Side-nav
358 ========================================================================== */
359
360.side-nav.fixed a {
361 font-size: 13px;
362 line-height: 44px;
363 height: 44px;
364}
365
366.side-nav .collapsible-header,
367.side-nav.fixed .collapsible-header {
1d4d9aaf
TC
368 height: 45px;
369 line-height: 44px;
370 padding: 0 20px;
5ecdfcd0
TC
371}
372
373.bold > a {
374 font-weight: bold;
375}
376
377.side-nav > li.logo {
378 line-height: 0;
379 text-align: center;
380}
381
382#main .logo a {
383 height: 100pt;
384}
385
386#main .logo img {
387 height: 100pt;
388 width: 100pt;
389}
390
391#main .logo:hover {
392 background: transparent;
393}
394
395.side-nav li {
396 padding: 0;
397}
398
399.side-nav a {
400 margin: 0 1rem;
401}
402
8315130a
NL
403span.numberItems {
404 float: right;
405}
406
38dc91be 407nav ul a:hover {
08f5a5b6 408 background-color: initial;
38dc91be
AD
409}
410
5ecdfcd0
TC
411/* ==========================================================================
412 * 3 = Filters slider
413 * ========================================================================== */
414
415#filters button {
416 padding: 0;
417 width: 100%;
418}
419
420.side-nav.fixed.right-aligned {
421 right: -250px;
422 left: auto !important;
423 overflow-y: visible;
424}
425
426#filters div.with-checkbox {
427 height: 3rem;
428 margin-top: 0;
429}
430
431/* ==========================================================================
432 4 = Cards
433 ========================================================================== */
434
435main #content {
436 padding: 0 0.5rem;
437}
438
439main ul.row {
440 padding: 0 0.75rem;
441}
442
443.data .card .card-body {
34aa06a9 444 height: 19em;
5ecdfcd0
TC
445 overflow: hidden;
446}
447
34aa06a9
TC
448.card .card-content .card-title,
449.card .card-reveal .card-title {
450 line-height: 22.8px;
3221b2e4 451 max-height: 80px;
34aa06a9
TC
452 font-size: 19px;
453 font-family: roberto, "Helvetica Neue", Helvetica, Arial, sans-serif;
454 color: #313131;
455}
456
457.card .card-content .activator,
458.card .card-reveal .activator {
459 cursor: pointer;
460 font-family: "Material Icons";
cdd3010b
JB
461}
462
c146f694
TC
463.card .card-content i.right,
464.card .card-reveal i.right {
465 margin-left: 0;
5ecdfcd0
TC
466}
467
34aa06a9
TC
468.card .card-content .original {
469 line-height: 24px;
470 font-size: 15px;
471}
472
d56d416d
TC
473a.original {
474 text-overflow: ellipsis;
475 white-space: nowrap;
476 overflow: hidden;
477 display: block;
478}
479
25dc07d3 480.card .card-entry-labels {
1d4d9aaf
TC
481 position: absolute;
482 top: 10px;
483 z-index: 90;
484 max-width: 50%;
25dc07d3
TC
485}
486
e0847780
JB
487.card .card-entry-labels li,
488.card-tag-labels li {
1d4d9aaf 489 margin: 10px 10px 10px auto;
28bb4890 490 padding: 5px 12px 5px 16px !important;
1d4d9aaf
TC
491 background-color: rgba(0, 151, 167, 0.85);
492 border-radius: 0 3px 3px 0;
493 color: #fff;
494 cursor: default;
495 max-height: 2em;
496 overflow: hidden;
497 text-overflow: ellipsis;
498 white-space: nowrap;
25dc07d3
TC
499}
500
501.card .card-entry-labels-hidden {
34aa06a9 502 margin: 2.5px auto;
25dc07d3
TC
503}
504
505.card .card-entry-labels-hidden li {
1d4d9aaf
TC
506 display: inline-block;
507 background-color: rgba(0, 151, 167, 0.85);
508 margin: 0 5px;
509 padding: 5px 12px;
510 border-radius: 3px;
511 color: #fff;
512 max-height: 2em;
513 max-width: calc(100% - 15px);
514 overflow: hidden;
515 text-overflow: ellipsis;
516 white-space: nowrap;
25dc07d3
TC
517}
518
7005b425
JB
519.card .card-entry-labels-hidden li:first-child {
520 margin-left: 0;
521}
522
15f1352e
TC
523.card-entry-tags a,
524.card-entry-labels a,
28bb4890 525.card-tag-labels a,
15f1352e
TC
526.card-entry-labels-hidden a,
527#list .chip a {
528 text-decoration: none;
529 font-weight: normal;
530 color: #fff;
531}
532
5ecdfcd0
TC
533.card .card-content .estimatedTime {
534 margin-bottom: 10px;
535}
536
34aa06a9
TC
537.card .card-action {
538 padding: 10px 5px 10px 15px;
5ecdfcd0
TC
539}
540
541.card .card-action ul.links {
542 margin: 0;
543 font-size: 24px;
544 line-height: 24px;
545}
546
77e2898a
JB
547.card .card-action ul.tools li a.tool {
548 margin-right: 5px !important;
549}
550
5ecdfcd0 551.card .card-action a {
0f70abd6 552 color: #fff;
5ecdfcd0
TC
553 margin: 0;
554}
555
556.card .card-action a:hover {
0f70abd6
NL
557 color: #fff;
558}
559
34aa06a9
TC
560.card .card-action .reading-time {
561 display: inline-flex;
562 vertical-align: middle;
563}
564
9f7d154e
TC
565.quickstart .card .card-action a,
566.quickstart .card .card-action a:hover {
567 color: #fff !important;
5ecdfcd0
TC
568}
569
570.settings .div_tabs {
571 padding-bottom: 15px;
572}
573
574.card.sw {
575 max-width: 370px;
576 margin-left: auto;
577 margin-right: auto;
578}
579
580.card .card-image {
34aa06a9 581 height: 10em;
5ecdfcd0
TC
582}
583
8d7b4f0e
JB
584.card .card-fullimage {
585 height: 13.5em;
5ecdfcd0
TC
586}
587
8d7b4f0e
JB
588.card .card-image .preview,
589.card .card-fullimage .preview {
5ecdfcd0
TC
590 height: 14em;
591 background-size: cover;
592 background-repeat: no-repeat;
593 background-position: 50%;
594}
595
596/* ==========================================================================
597 5 = Article
598 ========================================================================== */
599
600#article {
601 font-size: 20px;
602 margin: 0 auto;
5ea90fa8 603 max-width: 45em;
5ecdfcd0
TC
604}
605
5b69e03e
KD
606#article article {
607 color: #424242;
56026217
KD
608 font-size: 18px;
609 line-height: 1.7em;
5b69e03e
KD
610}
611
612#article article h1,
613#article article h2,
614#article article h3,
615#article article h4,
616#article article h5,
617#article article h6 {
618 color: #212121;
619}
620
7470a2f3
KD
621#article article h1 strong,
622#article article h2 strong,
623#article article h3 strong,
624#article article h4 strong,
625#article article h5 strong,
626#article article h6 strong {
627 font-weight: 500;
628}
629
630#article article h6 {
631 font-size: 1.2rem;
632}
633
634#article article h5 {
635 font-size: 1.6rem;
636}
637
638#article article h4 {
639 font-size: 1.9rem;
640}
641
642#article article h3 {
643 font-size: 2.2rem;
644}
645
646#article article h2 {
647 font-size: 2.5rem;
648}
649
650#article article h1 {
651 font-size: 2.7rem;
652}
653
79efca1e
JB
654#article img,
655#article figure {
5ecdfcd0
TC
656 max-width: 100%;
657 height: auto;
658}
659
858430c0
KD
660#article article a {
661 border-bottom: 1px dotted #03a9f4;
662 text-decoration: none;
663}
664
665#article article a:hover {
666 border-bottom-style: solid;
667}
668
59cfd63c
KD
669#article article ul {
670 padding-left: 30px;
671}
672
673#article article ul,
674#article article ul li {
675 list-style-type: disc;
676}
677
819c8f5b
KD
678#article article blockquote {
679 font-style: italic;
680}
681
682#article article strong {
683 font-weight: bold;
684}
685
fdaa0443
KD
686#article article pre {
687 box-sizing: border-box;
688 margin: 0 0 1.75em;
689 border: #e3f2fd 1px solid;
690 width: 100%;
691 padding: 10px;
692 font-family: monospace;
693 font-size: 0.8em;
694 white-space: pre;
695 overflow: auto;
696 background: #f5f5f5;
697 border-radius: 3px;
698}
699
a15022db 700#article > header > h1 {
34aa06a9
TC
701 font-size: 2em;
702 margin: 2.1rem 0 0.68rem;
a15022db
TC
703}
704
5ecdfcd0
TC
705.reader-mode {
706 width: 95px !important;
707 transition: width 0.2s ease;
708}
709
710.reader-mode:hover {
711 width: 240px !important;
712}
713
714.reader-mode .collapsible-body {
715 height: 0;
716 overflow: hidden;
717}
718
719.reader-mode:hover .collapsible-body {
720 height: auto;
721}
722
723.reader-mode span {
724 opacity: 0;
725 transition: opacity 0.2s ease;
726}
727
728.reader-mode:hover span {
729 opacity: 1;
730}
731
732.progress {
733 position: fixed;
734 top: 0;
735 width: 100%;
736 height: 3px;
737 margin: 0;
738 z-index: 9999;
739}
740
34aa06a9 741#article aside .tools {
5ecdfcd0 742 font-size: 0.8em;
34aa06a9
TC
743 display: flex;
744 flex-flow: row wrap;
745 margin: 0 auto;
746}
747
80302e5a 748article aside .tools li {
34aa06a9
TC
749 display: inline-flex;
750 vertical-align: middle;
34aa06a9
TC
751}
752
753#article aside .tools a {
754 color: #000;
5ecdfcd0
TC
755 text-decoration: none;
756}
757
758#article aside #list {
759 float: right;
eef833d6 760 margin: 0 15px 10px;
5ecdfcd0
TC
761}
762
763#article aside .chip {
1d4d9aaf 764 background-color: rgba(0, 151, 167, 0.85);
eef833d6 765 padding: 0 15px 0 10px;
34aa06a9 766 margin: auto 2px;
5ecdfcd0
TC
767}
768
34aa06a9 769#article aside .chip a,
5ecdfcd0
TC
770#article aside .chip i {
771 color: #fff;
772}
773
774/* ==========================================================================
775 6 = Media queries
776 ========================================================================== */
777
778@media only screen and (max-width: 992px) {
779 header,
780 main,
781 footer {
782 padding-left: 0;
783 }
c146f694 784
5ecdfcd0
TC
785 nav,
786 main,
787 footer {
788 padding-left: 0;
789 }
c146f694 790
5ecdfcd0
TC
791 .pagination {
792 width: auto;
1d4d9aaf 793 }
c146f694 794
38dc91be 795 #article {
38dc91be
AD
796 max-width: 35em;
797 margin-left: auto;
798 margin-right: auto;
799 font-size: 18px;
800 }
801
802 #article > header > h1 {
803 font-size: 1.33em;
804 }
805
5ecdfcd0
TC
806 .reader-mode {
807 width: 240px !important;
808 }
c146f694 809
5ecdfcd0
TC
810 .reader-mode span {
811 opacity: 1;
812 }
c146f694 813
5ecdfcd0
TC
814 .tabs {
815 display: inline-block;
816 height: auto;
817 }
c146f694 818
5ecdfcd0
TC
819 .tab {
820 min-width: 100%;
821 }
c146f694 822
5ecdfcd0
TC
823 .indicator {
824 display: none;
825 }
c146f694 826
1d4d9aaf
TC
827 .pagination li.prev,
828 .pagination li.next {
5ecdfcd0
TC
829 width: auto;
830 }
831}
832
833@media only screen and (min-width: 400px) {
834 .nav-panel-buttom {
835 float: right;
836 }
837}
838
3221b2e4
TC
839@media only screen and (min-width: 1200px) and (max-width: 1650px) {
840 .row .col.l3 {
841 width: 33.33333%;
842 margin-left: 0;
843 }
844}
845
846@media only screen and (min-width: 993px) and (max-width: 1200px) {
5ecdfcd0
TC
847 .row .col.l1 {
848 width: 25%;
849 margin-left: 0;
850 }
c146f694 851
5ecdfcd0
TC
852 .row .col.l2 {
853 width: 33.33333%;
854 margin-left: 0;
855 }
c146f694 856
5ecdfcd0
TC
857 .row .col.l3 {
858 width: 41.66667%;
859 margin-left: 0;
860 }
c146f694 861
5ecdfcd0
TC
862 .row .col.l4 {
863 width: 50%;
864 margin-left: 0;
865 }
c146f694 866
5ecdfcd0
TC
867 .row .col.l5 {
868 width: 58.33333%;
869 margin-left: 0;
870 }
c146f694 871
5ecdfcd0
TC
872 .row .col.l6 {
873 width: 66.66667%;
874 margin-left: 0;
875 }
c146f694 876
5ecdfcd0
TC
877 .row .col.l7 {
878 width: 75%;
879 margin-left: 0;
880 }
c146f694 881
5ecdfcd0
TC
882 .row .col.l8 {
883 width: 83.33333%;
884 margin-left: 0;
885 }
c146f694 886
5ecdfcd0
TC
887 .row .col.l9 {
888 width: 91.66667%;
889 margin-left: 0;
890 }
c146f694 891
5ecdfcd0
TC
892 .row .col.l10 {
893 width: 100%;
894 margin-left: 0;
895 }
896}
897
898@media only screen and (max-width: 350px) {
899 .nb-results {
900 display: none;
901 }
34aa06a9
TC
902
903 main ul.row {
904 padding: 0;
905 }
906
907 .row .col {
908 padding: 0;
909 }
5ecdfcd0
TC
910}
911
912/* ==========================================================================
913 7 = Font
914 ========================================================================== */
915
916.icon-google-plus2::before {
917 content: "\ea89";
918}
919
920.icon-facebook2::before {
921 content: "\ea8d";
922}
923
924.icon-twitter::before {
a494c33e 925 content: "\ea96";
5ecdfcd0
TC
926}
927
928.icon-apple::before {
929 content: "\eabf";
930}
931
932.icon-android::before {
933 content: "\eac1";
934}
935
936.icon-chrome::before {
937 content: "\eae5";
938}
939
940.icon-firefox::before {
941 content: "\eae6";
942}
943
8e06720f 944.icon-link::before {
c146f694 945 content: "\e9cb";
8e06720f
NL
946}
947
5ecdfcd0
TC
948footer [class^="icon-"],
949footer [class*=" icon-"] {
950 font-size: 2em;
951 transition: text-shadow 0.2s ease;
952 padding-right: 10px;
953}
954
1d4d9aaf
TC
955footer [class^="icon-"]:hover,
956footer [class*=" icon-"]:hover {
5ecdfcd0
TC
957 text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
958}
959
960/* ==========================================================================
961 8 = Others
962 ========================================================================== */
963
964/* force height on non-input field in the settings page */
965div.settings div.input-field div,
966div.settings div.input-field ul {
967 margin-top: 40px;
968}
969
970/* but avoid to kill all file input */
971div.settings div.file-field div {
972 margin-top: inherit;
973}
b1e0a586
NL
974
975.input-field label.active {
c146f694 976 font-size: 1rem;
b1e0a586 977}
38dc91be
AD
978
979nav .input-field input {
980 margin: 0;
981}