]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Enable focus outline on More button
[rails.git] / app / assets / stylesheets / common.scss
1 @import "parameters";
2 @import "bootstrap";
3 @import "rails_bootstrap_forms";
4
5 /* Styles common to large and small screens */
6
7 /* Default rules for the body of every page */
8
9 body {
10   font-size: $typeheight;
11 }
12
13 p > img {
14   width: auto;
15   max-width: 100%;
16 }
17
18 small, aside {
19   font-size: 12px;
20 }
21
22 #container { position: relative; }
23
24 .small_icon {
25   vertical-align: middle;
26   margin-right: $lineheight * 0.25;
27 }
28
29 [dir=rtl] { /* no-r2 */ text-align: right; }
30
31 [dir=ltr] { /* no-r2 */ text-align: left; }
32
33 /* Rules for icons */
34
35 .icon {
36   display: inline-block;
37   vertical-align: top;
38   width: 20px;
39   height: 20px;
40   background: transparent image-url("sprite.png") no-repeat 0 0;
41   background-image: image-url("sprite.svg");
42   text-indent: -9999px;
43   overflow: hidden;
44 }
45
46 .icon.search      { /* no-r2 */ background-position: 0 0; }
47 .icon.donate      { /* no-r2 */ background-position: -20px 0; }
48 .icon.zoomin      { /* no-r2 */ background-position: -40px 0; }
49 .icon.zoomout     { /* no-r2 */ background-position: -60px 0; }
50 .icon.geolocate   { /* no-r2 */ background-position: -80px 0; }
51 .active .icon.geolocate   { /* no-r2 */ background-position: -80px -20px; }
52 .icon.layers      { /* no-r2 */ background-position: -100px 0; }
53 .icon.key         { /* no-r2 */ background-position: -120px 0; }
54 .icon.share       { /* no-r2 */ background-position: -140px 0; }
55 .icon.clipboard   { /* no-r2 */ background-position: -160px 0; }
56 .icon.link        { /* no-r2 */ background-position: -180px 0; }
57 .icon.close       { /* no-r2 */ background-position: -200px 0; }
58 .icon.close:hover { /* no-r2 */ background-position: -200px -20px; }
59 .icon.check       { /* no-r2 */ background-position: -220px 0; }
60 .icon.note        { /* no-r2 */ background-position: -240px 0; }
61 .icon.note.grey   { /* no-r2 */ background-position: -240px -20px; }
62 .icon.query       { /* no-r2 */ background-position: -260px 0; }
63
64 /* Utility for de-emphasizing content */
65
66 .text-muted a {
67   color: $blue;
68 }
69
70 /* Rules for borders */
71 /* These add additional colours to those provided by bootstrap */
72 .border-grey {
73   border-color: $grey !important;
74 }
75
76 .border-lightgrey {
77   border-color: $lightgrey !important;
78 }
79
80 /* Rules for the header */
81
82 #menu-icon {
83   display: none;
84   float: right;
85   background: image-url("menu-icon.png") no-repeat;
86   background-size: 30px 30px;
87   width: 30px;
88   height: 30px;
89   margin: 14px 10px 0 0;
90   opacity: 0.6;
91 }
92
93 header {
94   height: $headerHeight;
95   position: relative;
96   z-index: 1001;
97   font-size: 14px;
98
99   h1, nav, nav > ul, nav > ul > li {
100     display: inline-block;
101   }
102
103   > * {
104     height: 100%;
105     padding: $lineheight * 0.5;
106   }
107
108   h1, nav.primary {
109     float: left;
110   }
111
112   a, a:hover {
113     text-decoration: none;
114   }
115
116   img.logo {
117     width: 30px;
118     height: 30px;
119     margin-top: -2px;
120     vertical-align: middle;
121   }
122
123   h1 {
124     font-size: 18px;
125     font-weight: 600;
126     line-height: 1.2;
127     margin: 0;
128     padding-top: 15px;
129
130     a {
131       color: #000;
132     }
133
134     a:hover {
135       color: #000;
136     }
137   }
138
139   .btn {
140     font-size: 14px;
141   }
142 }
143
144
145 nav.primary {
146   & > .btn-group .btn-outline-primary {
147     @include button-outline-variant($green, $color-hover: $white, $active-color: $white);
148   }
149
150   .disabled {
151     .btn-outline-primary {
152       color: $grey;
153       cursor: default;
154
155       .caret {
156         border-top-color: $grey;
157       }
158
159       &:hover {
160         background-color: lighten($green, 30%);
161       }
162     }
163   }
164
165   // Small tweaks to the toggle to stop the primary colour showing through
166   // when the menu is shown
167   .show > .btn-outline-primary.dropdown-toggle {
168     background-color: $green;
169     border-color: $green;
170
171     &:focus {
172       box-shadow: 0 0 0 0.2rem fade-out($green, 0.5);
173     }
174   }
175 }
176
177 nav.secondary {
178   position: absolute;
179   right: 0;
180
181   .nav-link {
182     padding: 0.2rem;
183     color: $darkgrey;
184   }
185
186   > ul li.current a {
187     color: darken($darkgrey, 25%);
188   }
189
190   .btn-outline-secondary {
191     @include button-outline-variant($darkgrey, $color-hover: $darkgrey, $active-background: white, $active-border: $darkgrey);
192     border-color: $grey;
193     &:hover {
194       border-color: $grey;
195     }
196   }
197
198   .login-menu {
199     .btn-outline-secondary {
200       @include button-outline-variant($darkgrey, $color-hover: $white, $active-color: $white);
201     }
202   }
203
204   #inboxanchor {
205     background-color: lighten($grey, 10%);
206   }
207 }
208
209 nav.primary, nav.secondary {
210   .dropdown-item {
211     &:hover, &:active {
212       background-color: $green;
213       color: white;
214     }
215   }
216 }
217
218 #compact-secondary-nav {
219   display: none;
220 }
221
222 body.compact-nav {
223   #compact-secondary-nav {
224     display: inline-block;
225   }
226   .compact-hide {
227     display: none;
228   }
229 }
230
231 body.small-nav {
232   #menu-icon {
233     display: block;
234   }
235
236   nav.primary,
237   nav.secondary {
238     float: none !important;
239     position: relative;
240     display: block;
241     clear: both;
242   }
243
244   header {
245     height: auto;
246     min-height: $headerHeight;
247     background: #fff;
248
249     &.closed nav {
250       display: none;
251     }
252
253     .search_forms {
254       display: block;
255     }
256   }
257
258   #sidebar .search_forms,
259   #edit_tab,
260   #export_tab {
261     display: none;
262   }
263
264   nav.primary {
265     padding: 0;
266
267     ul, li {
268       border: none;
269       border-radius: 0;
270       width: 100%;
271     }
272
273     ul {
274       border-top: 1px solid #eee;
275       li {
276         border-bottom: 1px solid #eee;
277         border-right: none;
278         > a {
279           border-radius: 0;
280           width: 100%;
281           text-align: center;
282           font-size: 15px;
283         }
284       }
285     }
286
287     .btn-group {
288       width: 100%;
289       padding: 10px;
290     }
291   }
292
293   nav.secondary {
294     .user-menu, .login-menu {
295       width: 100%;
296     }
297   }
298
299   #compact-secondary-nav {
300     display: none;
301   }
302
303   .compact-hide {
304     display: inline-block;
305   }
306
307   .overlay-sidebar #sidebar .welcome {
308     display: none;
309   }
310
311   .overlay-sidebar #sidebar #banner {
312     display: none;
313   }
314 }
315
316 /* Utility for styling notification numbers */
317
318 .count-number {
319   background: lighten($green, 30%);
320   color: $gray-800;
321   font-weight: $font-weight-normal;
322 }
323
324 /* Rules for the message shown in place of the map when javascript is disabled */
325
326 #noscript {
327   z-index: 20000000;
328   margin-left: 400px;
329   margin-top: 50px;
330 }
331
332 /* Rules for Leaflet maps */
333
334 .leaflet-top.leaflet-right,
335 .leaflet-top.leaflet-left {
336   height: 100%;
337   column-gap: 10px;
338   display: flex;
339   flex-direction: column;
340   flex-wrap: wrap-reverse;
341 }
342
343 .leaflet-control .control-button {
344   display: block;
345   height: 40px;
346   width: 40px;
347   background-color: #333;
348   background-color: rgba(0,0,0,.6);
349   outline: none;
350
351   &:hover,
352   &:focus {
353     background-color: black;
354   }
355
356   &.disabled,
357   &.leaflet-disabled {
358     background-color: #333;
359     background-color: rgba(0,0,0,.5);
360     cursor: default;
361   }
362
363   &.active {
364     background-color: $vibrant-green;
365   }
366
367   &-first {
368     border-start-start-radius: 4px;
369   }
370
371   &-last {
372     border-end-start-radius: 4px;
373     margin-bottom: 10px;
374   }
375
376   .icon {
377     margin: 10px;
378   }
379 }
380
381 /* Rules for the sidebar and main map area */
382
383 .map-layout {
384   #content {
385     overflow: hidden;
386     position: absolute;
387     top: $headerHeight;
388     bottom: 0;
389     width: 100%;
390   }
391
392   #sidebar, #map {
393     position: relative;
394     height: 100%;
395     overflow-x: hidden;
396     overflow-y: auto;
397   }
398
399   #sidebar {
400     float: left;
401     width: $sidebarWidth;
402     background: #fff;
403
404     #sidebar_loader {
405       display: none;
406     }
407
408     #sidebar_content {
409       padding: $spacer;
410     }
411
412     > div {
413       position: relative;
414     }
415   }
416
417   .overlay-sidebar #sidebar {
418     position: absolute;
419     z-index: 1000;
420     height: auto;
421     overflow: hidden;
422
423     #banner {
424       display: block;
425     }
426
427     .welcome {
428       display: block;
429     }
430
431     #sidebar_content {
432       display: none;
433     }
434   }
435
436   .welcome {
437     display: none;
438
439     p {
440       font-size: 110%;
441       font-weight: 300;
442     }
443   }
444
445   #banner {
446     display: none;
447
448     img {
449       display: block;
450       width: $sidebarWidth;
451     }
452
453     button.btn-close {
454       background-color: rgba(255, 255, 255, 0.5);
455       opacity: 1.0;
456     }
457   }
458
459   #map {
460     height: 100%;
461     overflow: hidden;
462
463     &.query-active {
464       cursor: help;
465     }
466
467     &.query-disabled {
468       cursor: not-allowed;
469     }
470
471     .leaflet-marker-draggable {
472       cursor: move;
473     }
474   }
475
476   #map-ui {
477     display: none;
478     position: relative;
479     float: right;
480     width: 250px;
481     height: 100%;
482     background: white;
483     overflow: auto;
484
485     .section {
486       border-bottom: 1px solid $grey;
487       padding: $spacer;
488     }
489   }
490 }
491
492 @include media-breakpoint-down(md) {
493   body.map-layout {
494     #sidebar, #map {
495       position: relative;
496       overflow-x: hidden;
497       width: 100%;
498       height: 50%;
499     }
500
501     #map-ui {
502       z-index: 9999;
503       width: 100%;
504       height: 50%;
505       overflow-y: scroll;
506     }
507
508     .overlay-sidebar {
509       #sidebar {
510         position: absolute;
511         width: 350px;
512         height: auto;
513         overflow: hidden;
514       }
515
516       #map, #map-ui {
517         height: 100%;
518       }
519     }
520   }
521 }
522
523 .layers-ui {
524   .base-layers {
525     .leaflet-container {
526       width: 100%;
527       height: 50px;
528       cursor: pointer;
529     }
530
531     li  {
532       overflow: hidden;
533       border-radius: 3px;
534       border: 2px solid #fff;
535       margin-bottom: 8px;
536       position: relative;
537       transition: border-color 0.08s ease-in;
538
539       label {
540         position: absolute;
541         top: 0;
542         left: 0;
543         padding: 2px 6px;
544         border-bottom-right-radius: 3px;
545         cursor: pointer;
546         font-weight: 600;
547         font-size: 16px;
548         text-stroke: 2px #fff;
549         background: rgba(255,255,255,.9);
550         z-index: 1000;
551         input[type="radio"] {
552           display: none;
553         }
554       }
555
556       &.active { border-color: darken($green, 10%); }
557       &:hover {
558         border-color: $grey;
559         &.active { border-color: darken($green, 20%); }
560       }
561     }
562   }
563
564   .overlay-layers {
565     p {
566       font-size: 13px;
567       margin-bottom: 8px;
568     }
569     li.disabled { color: $darkgrey; }
570   }
571 }
572
573 .share-ui {
574   #mapnik_scale {
575     width: 100px;
576   }
577 }
578
579 .leaflet-top {
580   top: 10px !important;
581   .leaflet-control {
582     margin-right: 0px !important;
583     margin-top: 0px !important;
584   }
585 }
586
587 .leaflet-popup-scrolled {
588   padding-right: $lineheight;
589   border-bottom: 0px !important;
590   border-top: 0px !important;
591 }
592
593 .leaflet-popup-content-wrapper {
594   border-radius: 4px !important;
595 }
596
597 /* Rules for attribution text under the main map shown on printouts */
598
599 #attribution {
600   display: none;
601 }
602
603 .donate-attr { color: darken($green, 10%) !important; }
604
605 /* Rules for the sidebar */
606
607 #browse_status {
608   input {
609     display: block;
610     margin-left: auto;
611     margin-right: auto;
612   }
613
614   > div {
615    padding: $spacer;
616   }
617 }
618
619 /* Temporary label size override until we remove site-wide font customisation */
620
621 form {
622   label {
623     font-size: 16px;
624   }
625   .col-form-label {
626     font-size: 16px;
627   }
628 }
629
630 /* Stop bootstrap 5 from floating legends when they don't need to be */
631 legend {
632   float: none;
633 }
634
635 /* Override the text colour for primary and secondary buttons, to match our
636    bootstrap 4 colours. Note this has accessibility issues, which is why
637    bootstrap 5 calculates black as the appropriate colour, and we should
638    reconsider our colours at some point with that in mind. */
639
640 .btn-primary {
641   @include button-variant($primary, $primary, $color: $white, $hover-color: $white, $active-color: $white, $disabled-color: $white);
642 }
643
644 .btn-secondary {
645   @include button-variant($secondary, $secondary, $color: $white, $hover-color: $white, $active-color: $white, $disabled-color: $white);
646 }
647
648 .btn-outline-secondary {
649   @include button-outline-variant($secondary, $color-hover: $white, $active-color: $white);
650 }
651
652 /* Rules for the search and direction forms */
653
654 header .search_forms,
655 .directions_form {
656   display: none;
657 }
658
659 /* Rules for the map key which appears in the popout sidebar */
660
661 #mapkey {
662  .mapkey-table-key img {
663     display: block;
664     margin-left: auto;
665     margin-right: auto;
666   }
667 }
668
669 /* Rules for search sidebar */
670
671 #sidebar .search_results_entry {
672   ul li {
673     cursor: pointer;
674     &.selected { background: $list-highlight; }
675   }
676
677   .search_more .loader {
678     display: none;
679   }
680 }
681
682 .search_results_error {
683   color: #f00;
684   padding: 10px 20px;
685 }
686
687 /* Rules for routing */
688
689 div.direction {
690   background-image: image-url('routing-sprite.png');
691   width: 20px;
692   height: 20px;
693   background-repeat: no-repeat;
694 }
695 @for $i from 0 through 25 {
696 div.direction.i#{$i} { background-position: #{($i)*-20}px 0px; }
697 }
698
699 td.distance {
700     color: $darkgrey;
701     text-align: right;
702     font-size: x-small;
703 }
704 tr.turn {
705     cursor: pointer;
706 }
707 tr.turn:hover {
708     background: $list-highlight;
709 }
710
711 .routing_marker { width: 15px; cursor: move; }
712
713 .browse_status {
714   display: none;
715 }
716
717 /* Rules for the history sidebar */
718
719 #sidebar .changesets {
720   li {
721     &.selected { background: $list-highlight; }
722     /* color is derived from changeset bbox fillColor in history.js */
723
724     a.stretched-link > span, a:not(.stretched-link), [title] {
725       position: relative;
726       z-index: 2; /* needs to be higher than Bootstrap's stretched link ::after z-index */
727     }
728   }
729
730   .changeset_more .loader {
731     display: none;
732     width: 100%;
733   }
734 }
735
736 /* Rules for the browse sidebar */
737
738 #sidebar_content {
739   .browse-section {
740     padding-bottom: $spacer;
741     margin-bottom: $spacer;
742     border-bottom: 1px solid $grey;
743
744     h4:first-child {
745       word-wrap: break-word;
746     }
747   }
748
749   .browse-section:last-of-type {
750     border-bottom: none;
751   }
752
753   .browse-tag-list {
754     background-color: $offwhite;
755     table-layout: fixed;
756     border-collapse: separate;
757     border-spacing: 0;
758     width: 100%;
759     margin-bottom: $spacer;
760
761     th, td {
762       border-bottom: 1px solid $grey;
763     }
764
765     tr:last-child th, tr:last-child td {
766       border-bottom: 0;
767     }
768
769     .browse-tag-k,
770     .browse-tag-v {
771       width: 50%;
772       padding: 6px 10px;
773       word-wrap: break-word;
774       white-space: pre-wrap;
775     }
776
777     .browse-tag-k {
778       font-weight: 500;
779       background-color: $offwhite;
780     }
781
782     .browse-tag-v {
783       border-left: 1px solid $grey;
784       background-color: #fff;
785     }
786
787     .colour-preview-box {
788       float: right;
789       width: 14px;
790       height: 14px;
791       margin: 4px 0px;
792       border: 1px solid rgba(0, 0, 0, .1);
793       // add color via inline css on element: background-color: <tag value>;
794     }
795   }
796
797   .subscribe-buttons input {
798     font-size: 90%;
799     line-height: 15px;
800     min-height: 20px;
801   }
802
803   span.action-button:hover {
804     cursor: pointer;
805     text-decoration: underline;
806   }
807
808   .note-description {
809     overflow: hidden;
810     margin: 0 0 10px 10px;
811   }
812
813   .query-results {
814     display: none;
815
816     ul {
817       li {
818         &.query-result {
819           cursor: pointer;
820         }
821
822         &.selected {
823           background: $list-highlight;
824         }
825       }
826     }
827   }
828 }
829
830 /* Bootstrap buttons don't have any vertical margin, so
831    they touch when adjacent buttons wrap onto a new line
832    e.g. wide form buttons on a narrow sidebar */
833
834 .btn-wrapper {
835   > .btn {
836     margin-bottom: $spacer * 0.25;
837   }
838 }
839
840 /* Rules for export sidebar */
841
842 .export_form {
843   .export_area_inputs,
844   .export_button {
845     text-align: center;
846   }
847
848   .export_area_inputs {
849     margin-bottom: $spacer;
850     input[type="text"] {
851       width: 100px;
852       text-align: center;
853     }
854   }
855
856   .export_boxy {
857     background: $lightgrey;
858
859     #maxlat { margin-top: -1px; }
860     #minlon {
861       float: left;
862       /* no-r2 */ margin-left: -1px;
863     }
864     #maxlon {
865       float: right;
866       /* no-r2 */ margin-right: -1px;
867     }
868     #minlat { margin-bottom: -1px; }
869   }
870 }
871
872 /* Rules for edit pages */
873
874 .site-edit {
875   #content {
876     position: absolute;
877     top: $headerHeight;
878     bottom: 0;
879     width: 100%;
880   }
881
882   #map {
883     height: 100%;
884     overflow: hidden;
885   }
886 }
887
888 /* Rules for non-map content pages */
889
890 .content-heading {
891   background: $lightgrey;
892 }
893
894 .content-inner {
895   position: relative;
896   max-width: 960px;
897   margin: auto;
898   padding: $lineheight;
899 }
900
901 /* Overrides for pages that use new layout conventions */
902
903 .header-illustration {
904   background-position: 0 0;
905   background-repeat: no-repeat;
906   position: relative;
907   min-height: 200px;
908   width: 100%;
909   left: 0;
910   bottom: 0;
911
912   &.new-user-main {
913     background-image: image-url("sign-up-illustration.png");
914   }
915
916   &.confirm-main {
917     background-image: image-url("confirm-illustration.png");
918   }
919
920   &.new-user-terms {
921     background-image: image-url("terms-illustration.png");
922   }
923
924   &.new-user-arm {
925     height: 110px;
926     width: 130px;
927     left: 280px;
928     top: 180px;
929     background-image: image-url("sign-up-illustration-arm.png");
930     position: absolute;
931     z-index: 100;
932     pointer-events: none;
933   }
934 }
935
936 [dir=rtl] .header-illustration {
937   transform: scaleX(-1);
938
939   h1 {
940     transform: scaleX(-1);
941   }
942 }
943
944 #content.maximised {
945   top: 0;
946   left: 0;
947   right: 0;
948   bottom: 0;
949   border: 0;
950   z-index: 2000;
951 }
952
953 /* Rules for small maps in content areas */
954
955 .content_map {
956   height: 200px;
957   margin-bottom: $lineheight;
958 }
959
960 @include media-breakpoint-up(md) {
961   .content_map {
962     height: 400px;
963   }
964 }
965
966 /* Rules for the user map */
967
968 .content_map .leaflet-popup-content {
969   margin: $spacer;
970   min-height: 50px;
971 }
972
973 /* Rules for user popups on maps */
974
975 .user_popup {
976   min-width: 200px;
977   p {
978     padding: 0 0 5px 0;
979     margin: 0 0 0 60px;
980     font-size: 12px;
981   }
982 }
983
984 /* Rules for the user list */
985
986 #user_list {
987   width: 100%;
988 }
989
990 /* Rules for the diary entry page */
991
992 .diary_entries {
993   #map {
994     height: 400px;
995     display: none;
996   }
997   .comments {
998     max-width: 740px;
999   }
1000   .diary-comment {
1001     border-top: 1px dashed $grey;
1002     &:first-child {
1003       border-top: 1px solid $grey;
1004     }
1005   }
1006 }
1007
1008 /* Rules for the account confirmation page */
1009
1010 .users-terms {
1011   .legale {
1012     padding: $lineheight;
1013     margin-bottom: $lineheight;
1014     overflow: auto;
1015     height: 20em;
1016
1017     li {
1018       list-style: inherit;
1019     }
1020
1021     ol ol {
1022       list-style-type: lower-alpha;
1023     }
1024   }
1025 }
1026
1027 /* Rules for the oauth authorization page */
1028
1029 .oauth-authorize ul {
1030   list-style: none;
1031 }
1032
1033 /* Rules for messages pages */
1034
1035 .messages {
1036   .inbox-row {
1037     background: $offwhite;
1038   }
1039
1040   .inbox-row-unread {
1041     background: #CBEEA7;
1042   }
1043 }
1044
1045 .search_form {
1046   background-color: $lightgrey;
1047
1048   #query {
1049     z-index: 0;
1050   }
1051
1052   .describe_location {
1053     font-size: 10px;
1054   }
1055 }
1056
1057 .directions_form {
1058   background-color: $lightgrey;
1059 }
1060
1061 /* Rules for user images */
1062
1063 img.user_image {
1064   max-width: 100px;
1065   max-height: 100px;
1066 }
1067
1068 img.user_thumbnail {
1069   max-width: 50px;
1070   max-height: 50px;
1071 }
1072
1073 img.user_thumbnail_tiny {
1074   width: auto;
1075   height: auto;
1076   max-width: 25px;
1077   max-height: 25px;
1078 }
1079
1080 /* General styles for action lists / subnavs */
1081
1082 nav.secondary-actions {
1083   margin-left: -11px;
1084   overflow: hidden;
1085   > ul {
1086     display: flex;
1087     flex-direction: row;
1088     flex-wrap: wrap;
1089     margin-bottom: 0;
1090     margin-left: -1px;
1091     padding: 0;
1092     > li {
1093       flex-basis: auto;
1094       list-style: none;
1095       border-left: 1px solid $grey;
1096       padding-left: $lineheight * 0.5;
1097       margin-right: $lineheight * 0.5;
1098       margin-bottom: $lineheight * 0.125;
1099     }
1100   }
1101 }
1102
1103 div.secondary-actions {
1104   padding: 10px;
1105   text-align: center;
1106 }
1107
1108 /* Rules for rich text */
1109
1110 .richtext,
1111 .prose {
1112   code {
1113     background: $lightgrey;
1114     padding: 2px 3px;
1115   }
1116
1117   pre {
1118     background: $lightgrey;
1119     padding: 2px 3px;
1120     white-space: pre-wrap;
1121
1122     code {
1123       padding: 0;
1124     }
1125   }
1126
1127   img {
1128     padding: $lineheight;
1129     background-color: $offwhite;
1130     display: block;
1131     max-width: 100%;
1132     margin: auto;
1133   }
1134
1135   blockquote {
1136     border-left: $lineheight solid $offwhite;
1137     padding-left: $lineheight;
1138     margin: 0;
1139     color: $darkgrey;
1140   }
1141 }
1142
1143 /* Rules for the iD editor */
1144
1145 .id-embed {
1146   width: 100%;
1147   height: 100%;
1148 }
1149
1150 /* Rules for the "Welcome" page */
1151 .site-welcome, .site-fixthemap {
1152   .sprite {
1153     background-image: image-url("welcome-sprite.png");
1154     background-size: 500px 250px;
1155     display: block;
1156   }
1157
1158   .sprite.small {
1159     width: 50px;
1160     height: 50px;
1161   }
1162
1163   .sprite.x {
1164     /* no-r2 */ background-position: -50px 0;
1165   }
1166
1167   .sprite.term {
1168     margin-right: 10px;
1169     vertical-align: middle;
1170   }
1171
1172   .sprite.node {
1173     /* no-r2 */ background-position: -100px 0;
1174   }
1175
1176   .sprite.way {
1177     /* no-r2 */ background-position: -150px 0;
1178   }
1179
1180   .sprite.tag {
1181     /* no-r2 */ background-position: -200px 0;
1182   }
1183
1184   .sprite.editor {
1185     /* no-r2 */ background-position: -250px 0;
1186   }
1187
1188   .sprite.question {
1189     /* no-r2 */ background-position: -300px 0;
1190   }
1191
1192   .sprite.rules {
1193     /* no-r2 */ background-position: -350px 0;
1194   }
1195
1196   .icon.note {
1197     background-color: #333;
1198     border-radius: 4px;
1199   }
1200 }
1201
1202 .site-about #content {
1203   background-color: $lightgrey;
1204
1205   .content-inner {
1206     max-width: 760px;
1207   }
1208
1209   .attr {
1210     margin-top: -20px;
1211
1212     h1 {
1213       span {
1214         color: $vibrant-green;
1215       }
1216     }
1217
1218     .user-image {
1219       height: 150px;
1220       background-position: 0 50%;
1221       background-repeat: no-repeat;
1222       background-image: image-url('about/osm.png');
1223       background-size: cover;
1224       background-color: $vibrant-green;
1225     }
1226
1227     .byosm {
1228       background: $vibrant-green;
1229     }
1230
1231     .byosm span {
1232       display: inline-block;
1233       width: 1em;
1234       margin-left: -1em;
1235     }
1236   }
1237
1238   .icon {
1239     width: 30px;
1240     height: 30px;
1241     background: 40px 40px image-url('about/sprite.png') no-repeat;
1242
1243     &.local {
1244       /* no-r2 */
1245       background-position: 0px 0px;
1246     }
1247     &.community {
1248       /* no-r2 */
1249       background-position: 0px -40px;
1250     }
1251     &.open {
1252       /* no-r2 */
1253       background-position: 0px -80px;
1254     }
1255     &.partners {
1256       /* no-r2 */
1257       background-position: 0px -120px;
1258     }
1259     &.infringement {
1260       /* no-r2 */
1261       background-position: 0px -160px;
1262     }
1263     &.legal {
1264       /* no-r2 */
1265       background-position: -45px -160px;
1266     }
1267   }
1268 }
1269
1270 @import 'browse';