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