]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Merge remote-tracking branch 'upstream/pull/2696'
[rails.git] / app / assets / stylesheets / common.scss
1 @import "parameters";
2 @import "bootstrap";
3
4 /* Styles common to large and small screens */
5
6 .fillL { background-color: white; }
7
8 /* Default rules for the body of every page */
9
10 body {
11   font-family: 'Helvetica Neue',Arial,sans-serif;
12   font-size: $typeheight;
13   line-height: 1.6666;
14   color: #222;
15   background-color: #fff;
16   margin: 0px;
17   padding: 0px;
18   text-align: left;
19   height: 100%;
20 }
21
22 p > img {
23   width: auto;
24   max-width: 100%;
25 }
26
27 small, aside {
28   font-size: 12px;
29 }
30
31 #container { position: relative; }
32
33 .small_icon {
34   vertical-align: middle;
35   margin-right: $lineheight/4;
36 }
37
38 .red { color: $red; }
39
40 .piwik { border: 0; }
41
42 [dir=rtl] { /* no-r2 */ text-align: right; }
43
44 [dir=ltr] { /* no-r2 */ text-align: left; }
45
46 /* Rules for icons */
47
48 .icon {
49   display: inline-block;
50   vertical-align: top;
51   width: 20px;
52   height: 20px;
53   background: transparent image-url("sprite.png") no-repeat 0 0;
54   background-image: image-url("sprite.svg");
55   text-indent: -9999px;
56   overflow: hidden;
57 }
58
59 .icon.search      { /* no-r2 */ background-position: 0 0; }
60 .icon.donate      { /* no-r2 */ background-position: -20px 0; }
61 .icon.zoomin      { /* no-r2 */ background-position: -40px 0; }
62 .icon.zoomout     { /* no-r2 */ background-position: -60px 0; }
63 .icon.geolocate   { /* no-r2 */ background-position: -80px 0; }
64 .active .icon.geolocate   { /* no-r2 */ background-position: -80px -20px; }
65 .icon.layers      { /* no-r2 */ background-position: -100px 0; }
66 .icon.key         { /* no-r2 */ background-position: -120px 0; }
67 .icon.share       { /* no-r2 */ background-position: -140px 0; }
68 .icon.clipboard   { /* no-r2 */ background-position: -160px 0; }
69 .icon.link        { /* no-r2 */ background-position: -180px 0; }
70 .icon.close       { /* no-r2 */ background-position: -200px 0; }
71 .close-wrap:hover .icon.close,
72 .icon.close:hover { /* no-r2 */ background-position: -200px -20px; }
73 .icon.check       { /* no-r2 */ background-position: -220px 0; }
74 .icon.note        { /* no-r2 */ background-position: -240px 0; }
75 .icon.note.grey   { /* no-r2 */ background-position: -240px -20px; }
76 .icon.query       { /* no-r2 */ background-position: -260px 0; }
77
78 /* Rules for links */
79
80 a {
81   color: #24d;
82   text-decoration: none;
83   -webkit-appearance: none;
84   outline: 0;
85   &:hover {
86     text-decoration: underline;
87   }
88 }
89
90 /* Utility for de-emphasizing content */
91
92 .deemphasize {
93   color: $darkgrey;
94   a {
95     color: $blue;
96   }
97 }
98
99 .text-muted a {
100   color: $blue;
101 }
102
103 /* Rules for the header */
104
105 #menu-icon {
106   display: none !important;
107   float: right;
108   background: image-url("menu-icon.png") no-repeat;
109   background-size: 30px 30px;
110   display: block;
111   width: 30px;
112   height: 30px;
113   margin: 14px 10px 0 0;
114   opacity: 0.6;
115 }
116
117 header {
118   height: $headerHeight;
119   position: relative;
120   z-index: 1001;
121   font-size: 14px;
122
123   h1, nav, nav > ul, nav > ul > li {
124     display: inline-block;
125   }
126
127   > * {
128     height: 100%;
129     padding: $lineheight/2;
130   }
131
132   h1, nav.primary {
133     float: left;
134   }
135
136   a, a:hover {
137     text-decoration: none;
138   }
139
140   img.logo {
141     width: 30px;
142     height: 30px;
143     margin-top: -2px;
144     vertical-align: middle;
145   }
146
147   h1 {
148     font-size: 18px;
149     font-weight: 600;
150     line-height: 1.2;
151     margin: 0;
152     padding-top: 15px;
153
154     a {
155       color: #000;
156     }
157
158     a:hover {
159       color: #000;
160     }
161   }
162
163   .btn {
164     font-size: 14px;
165   }
166 }
167
168
169 nav.primary {
170   .btn-outline-primary {
171     @include button-outline-variant($green, $white);
172   }
173
174   .disabled {
175     .btn-outline-primary {
176       color: $grey;
177       cursor: default;
178
179       .caret {
180         border-top-color: $grey;
181       }
182
183       &:hover {
184         background-color: lighten($green, 30%);
185       }
186     }
187   }
188
189   // Small tweaks to the toggle to stop the primary colour showing through
190   // when the menu is shown
191   .show > .btn-outline-primary.dropdown-toggle {
192     background-color: $green;
193     border-color: $green;
194
195     &:focus {
196       box-shadow: 0 0 0 0.2rem fade-out($green, 0.5);
197     }
198   }
199 }
200
201 nav.secondary {
202   position: absolute;
203   right: 0;
204
205   .nav-link {
206     padding: 0.2rem;
207     color: $darkgrey;
208   }
209
210   > ul li.current a {
211     color: darken($darkgrey, 25%);
212   }
213
214   .login-menu {
215     .btn-outline-secondary {
216       @include button-outline-variant($darkgrey);
217     }
218   }
219
220   .user-menu {
221     .btn-outline-secondary {
222       @include button-outline-variant($darkgrey, $darkgrey, white, $darkgrey);
223       border-color: $grey;
224       &:hover {
225         border-color: $grey;
226       }
227       &:focus {
228         background-color: white;
229         box-shadow: none;
230       }
231     }
232     &.show .btn-outline-secondary {
233       background-color: white;
234       &:focus {
235         box-shadow: none;
236       }
237     }
238   }
239
240   img.user_thumbnail_tiny {
241     border: 0;
242     border-radius: 3px;
243   }
244
245   #inboxanchor {
246     display: inline-block;
247     height: 25px;
248     margin: 3px 0 3px 3px;
249     background-color: lighten($grey, 10%);
250     line-height: 20px;
251     border-radius: 3;
252   }
253
254   .dropdown-menu {
255     .count-number {
256       font-size: 14px;
257     }
258   }
259 }
260
261 nav.primary, nav.secondary {
262   .dropdown-item {
263     &:hover, &:active {
264       background-color: $green;
265       color: white;
266     }
267   }
268 }
269
270 #compact-secondary-nav {
271   display: none;
272 }
273
274 body.compact {
275   #compact-secondary-nav {
276     display: inline-block;
277   }
278   .compact-hide {
279     display: none;
280   }
281 }
282
283 /* Utility for styling notification numbers */
284
285 .count-number {
286   padding: 2px $lineheight/4;
287   border-radius: 2px;
288   background: lighten($green, 30%);
289   margin: 0 2px;
290   font-size: 11px;
291   color: #333;
292 }
293
294 /* Rules for the message shown in place of the map when javascript is disabled */
295
296 #noscript {
297   z-index: 20000000;
298   margin-left: 400px;
299   margin-top: 50px;
300 }
301
302 /* Rules for Leaflet maps */
303
304 .leaflet-control .control-button {
305   display: block;
306   height: 40px;
307   width: 40px;
308   background-color: #333;
309   background-color: rgba(0,0,0,.6);
310   border-radius: 4px 0 0 4px;
311   margin-bottom: 10px;
312   outline: none;
313
314   &:hover {
315     background-color: black;
316   }
317
318   &.disabled,
319   &.leaflet-disabled {
320     background-color: #333;
321     background-color: rgba(0,0,0,.5);
322     cursor: default;
323   }
324
325   &.active {
326     background-color: $vibrant-green;
327   }
328
329   .icon {
330     margin: 10px;
331   }
332 }
333
334 .leaflet-control .zoomin,
335 .control-layers .control-button {
336   margin-bottom: 0px;
337   border-radius: 4px 0 0 0;
338 }
339
340 .leaflet-control .zoomout,
341 .control-key .control-button {
342   margin-bottom: 0;
343   border-radius: 0;
344 }
345
346 .control-locate .control-button,
347 .control-share .control-button {
348   border-radius: 0 0 0 4px;
349 }
350
351 /* Rules for the sidebar and main map area */
352
353 .map-layout {
354   #content {
355     overflow: hidden;
356     position: absolute;
357     top: $headerHeight;
358     bottom: 0;
359     width: 100%;
360   }
361
362   #sidebar, #map {
363     position: relative;
364     height: 100%;
365     overflow-x: hidden;
366     overflow-y: auto;
367   }
368
369   #sidebar {
370     float: left;
371     width: $sidebarWidth;
372     background: #fff;
373
374     #sidebar_loader {
375       display: none;
376     }
377
378     > div {
379       position: relative;
380       float: left;
381       clear: both;
382       width: 100%;
383     }
384
385     h2 {
386       padding: $lineheight $lineheight $lineheight/2;
387       font-size: 1.5rem;
388     }
389
390     h3, h4 {
391       margin-top: $lineheight;
392       margin-bottom: $lineheight/2;
393       font-size: 1.25rem;
394     }
395
396     .close-wrap {
397       cursor: pointer;
398       position: absolute;
399       top: 0;
400       right: 0;
401       width: 60px;
402       height: 60px;
403
404       .icon.close {
405         pointer-events: none;
406         position: absolute;
407         right: 20px;
408         top: 20px;
409       }
410     }
411
412     .icon.close {
413       float: right;
414       cursor: pointer;
415     }
416
417     .flash {
418       padding: 15px;
419
420       picture {
421         margin-right: -25px;
422       }
423
424       div.message {
425         margin-left: 30px;
426       }
427     }
428   }
429
430   .overlay-sidebar #sidebar {
431     position: absolute;
432     z-index: 1000;
433     height: auto;
434     overflow: hidden;
435
436     #banner {
437       display: block;
438     }
439
440     .welcome {
441       display: none;
442
443       &.visible {
444         display: block;
445       }
446     }
447
448     #sidebar_content {
449       display: none;
450     }
451   }
452
453   .welcome {
454     display: none;
455     padding-bottom: 5px;
456
457     p {
458       padding: $lineheight/2 $lineheight $lineheight;
459       font-size: 110%;
460       font-weight: 300;
461     }
462
463     .button {
464       width: 50%;
465       float: left;
466       margin: 0;
467       border-radius: 0;
468       font-weight: normal;
469       padding: .6em;
470
471       &.learn-more {
472         border-right: 1px solid #fff;
473       }
474     }
475   }
476
477   #banner {
478     display: none;
479
480     img {
481       display: block;
482       width: $sidebarWidth;
483     }
484   }
485
486   #map {
487     height: 100%;
488     overflow: hidden;
489
490     &.query-active {
491       cursor: help;
492     }
493
494     &.query-disabled {
495       cursor: not-allowed;
496     }
497
498     .leaflet-marker-draggable {
499       cursor: move;
500     }
501   }
502
503   #map-ui {
504     display: none;
505     position: relative;
506     float: right;
507     width: 250px;
508     height: 100%;
509     background: white;
510     overflow: auto;
511
512     .section {
513       border-bottom: 1px solid $grey;
514       padding: 10px 20px;
515     }
516
517     a.close-button {
518       float: right;
519       padding:5px;
520       font-size:20px;
521       line-height:10px;
522       color:#222;
523       border:1px solid $grey;
524     }
525
526     .tooltip {
527       opacity: 1;
528       border: 1px solid $grey;
529       .tooltip-arrow {
530         border-top-color: $grey;
531       }
532     }
533   }
534 }
535
536 .layers-ui,
537 .share-ui {
538   li:last-child {
539     margin-bottom: 0;
540   }
541 }
542
543 .layers-ui {
544   .base-layers {
545     .leaflet-container {
546       width: 100%;
547       height: 50px;
548       cursor: pointer;
549     }
550
551     li  {
552       overflow: hidden;
553       border-radius: 3px;
554       border: 2px solid #fff;
555       margin-bottom: 8px;
556       position: relative;
557       transition: border-color 0.08s ease-in;
558
559       label {
560         position: absolute;
561         top: 0;
562         left: 0;
563         padding: 2px 6px;
564         border-bottom-right-radius: 3px;
565         cursor: pointer;
566         font-weight: 600;
567         font-size: 16px;
568         text-stroke: 2px #fff;
569         background: rgba(255,255,255,.9);
570         z-index: 1000;
571         input[type="radio"] {
572           display: none;
573         }
574       }
575
576       &.active { border-color: darken($green, 10%); }
577       &:hover {
578         border-color: $grey;
579         &.active { border-color: darken($green, 20%); }
580       }
581     }
582   }
583
584   .overlay-layers {
585     p {
586       font-size: 13px;
587       margin-bottom: 8px;
588     }
589     li.disabled { color: $darkgrey; }
590   }
591 }
592
593 .share-ui {
594   .share-tabs {
595     margin-bottom: 10px;
596
597     a {
598       color: #fff;
599       text-decoration: none;
600       background-color: $lightblue;
601       padding: 5px 10px;
602       border-right: 1px solid #fff;
603     }
604
605     a:first-child {
606       border-right: 1px solid #fff;
607       border-radius: 4px 0 0 4px;
608     }
609
610     a:last-child {
611       border-radius: 0 4px 4px 0;
612     }
613
614     a.active {
615       background-color: $blue;
616     }
617   }
618
619   .share-tab {
620     display: none;
621   }
622
623   .share-link {
624     input[type=text],
625     textarea {
626       width: 100%;
627       font-family: monospace;
628       font-size: small;
629       line-height: 1.3;
630     }
631   }
632
633   .share-image {
634     label {
635       margin-right: 10px;
636     }
637   }
638
639   #embed_html {
640     resize: vertical;
641   }
642
643   #mapnik_scale {
644     width: 100px;
645   }
646 }
647
648 .leaflet-top {
649   top: $lineheight/2 !important;
650   .leaflet-control {
651     margin-right: 0px !important;
652     margin-top: 0px !important;
653   }
654 }
655
656 .leaflet-popup-scrolled {
657   padding-right: $lineheight;
658   border-bottom: 0px !important;
659   border-top: 0px !important;
660 }
661
662 .leaflet-popup-content-wrapper {
663   border-radius: 4px !important;
664 }
665
666 /* Rules for attribution text under the main map shown on printouts */
667
668 #attribution {
669   display: none;
670
671   table {
672     width: 100%
673   }
674 }
675
676 .attribution_license,
677 .attribution_project {
678   text-align: left;
679 }
680
681 .attribution_notice {
682   text-align: center;
683 }
684
685 .donate-attr { color: darken($green, 10%) !important; }
686
687 /* Rules for the sidebar */
688
689 .sidebar_heading {
690   position: relative;
691   padding: $lineheight/2 $lineheight;
692   // background: $offwhite;
693   // border-bottom: 1px solid $grey;
694   > .close {
695     float: right;
696     margin-top: 2px;
697     cursor: pointer;
698   }
699 }
700
701 #browse_status {
702   p {
703     padding: $lineheight;
704   }
705
706   input {
707     display: block;
708     margin-left: auto;
709     margin-right: auto;
710   }
711 }
712
713 #sidebar {
714   #sidebar_loader,
715   .search_more {
716     width: 100%;
717     margin: $lineheight auto;
718   }
719
720   .loader,
721   .load_more {
722     text-align: center;
723     margin: auto;
724     width: 40px;
725     display: block;
726   }
727 }
728
729 /* Rules for the search and direction forms */
730
731 header .search_forms,
732 .directions_form {
733   display: none;
734 }
735
736 .search_form,
737 .directions_form {
738   position: relative;
739   padding: $lineheight/2;
740   background-color: $lightgrey;
741
742   .query_wrapper {
743     position: relative;
744     overflow: hidden;
745     border-radius: 2px 0 0 2px;
746   }
747
748   input[type=text] {
749     width: 100%;
750     height: 30px;
751     transition: 300ms linear;
752   }
753
754   input[type=text].overflow {
755     border-right: none;
756     border-radius: 3px 0px 0px 3px;
757   }
758
759   input:focus {
760     outline: none;
761     box-shadow: 0px 0px 7px $vibrant-green;
762   }
763
764   input[type=submit].float {
765     float: right;
766     width: auto;
767     min-width: 0;
768     border-radius: 0 2px 2px 0;
769   }
770
771   input.error {
772     background-color: rgba($red, 0.4);
773   }
774
775   select {
776     /* this next line is to polyfill the vertical alignment of text within a select element,
777      * which is different between firefox and chrome. */
778     padding: 0.3em 0;
779   }
780
781   .query_options {
782     text-align: right;
783     font-size: 10px;
784     color: $blue;
785   }
786
787   .describe_location {
788     position: absolute;
789     top: 6px;
790     right: 6px;
791     font-size: 10px;
792     color: $blue;
793   }
794
795   .switch_link {
796     float: right;
797     width: auto;
798     min-width: 0;
799     margin-left: 6px;
800   }
801
802   img.button {
803     display: block;
804     width: 20px;
805     height: 20px;
806   }
807
808   span.force_width {
809     width: 100%;
810     padding-right: 25px;
811     display: block;
812   }
813
814   select.routing_engines {
815     min-height: 30px;
816     margin: 0px 0px 5px 25px;
817   }
818
819   input.routing_go {
820     min-width: 100px;
821     float: right;
822   }
823
824   div.header {
825     width: 100%;
826     height: 30px;
827   }
828
829   div.line {
830     width: 100%;
831     margin: 0px 0px 5px 0px;
832   }
833
834   div.loader_copy {
835     display: none;
836
837     img {
838       vertical-align: middle;
839     }
840   }
841
842   a.reverse_directions {
843     cursor: pointer;
844     margin: 0px 0px 5px 25px;
845   }
846 }
847
848 /* Rules for the map key which appears in the popout sidebar */
849
850 #mapkey {
851  .mapkey-table-key img {
852     display: block;
853     margin-left: auto;
854     margin-right: auto;
855   }
856 }
857
858 /* Rules for search sidebar */
859
860 #sidebar .search_results_entry {
861   ul li {
862     cursor: pointer;
863     &.selected { background: $list-highlight; }
864   }
865
866   .search_more .loader {
867     display: none;
868     width: 100%;
869   }
870 }
871
872 .search_results_error {
873   color: #f00;
874   padding: 10px 20px;
875 }
876
877 /* Rules for routing */
878
879 #sidebar_content>table {
880     padding: 5px 20px 10px 15px;
881     width: 100%;
882     border-collapse: separate;
883     border-spacing: 0;
884 }
885
886 div.direction {
887   background-image: image-url('routing-sprite.png');
888   width: 20px;
889   height: 20px;
890   background-repeat: no-repeat;
891 }
892 @for $i from 0 through 25 {
893 div.direction.i#{$i} { background-position: #{($i)*-20}px 0px; }
894 }
895
896 p#routing_summary {
897     padding: 0 $lineheight $lineheight/4;
898 }
899
900 td.instruction, td.distance {
901     padding-top: $lineheight/5;
902     padding-bottom: $lineheight/5;
903     border-bottom: 1px solid $grey;
904 }
905 td.distance {
906     color: $darkgrey;
907     text-align: right;
908     font-size: x-small;
909 }
910 tr.turn {
911     cursor: pointer;
912 }
913 tr.turn:hover {
914     background: $list-highlight;
915 }
916 .routing_engines, #route_from, #route_to { margin-left: 25px; }
917 .routing_marker { width: 15px; position: absolute; cursor: move; }
918
919 /* Rules for entity history */
920
921 #sidebar_content {
922   .browse_details {
923     position: relative;
924     border-bottom: $keyline;
925   }
926 }
927
928 .browse_status {
929   display: none;
930 }
931
932 /* Rules for the history sidebar */
933
934 #sidebar .changesets {
935   li {
936     cursor: pointer;
937
938     &.selected { background: $list-highlight; }
939     /* color is derived from changeset bbox fillColor in history.js */
940   }
941
942   .comments {
943     float: right;
944     color: $darkgrey;
945   }
946
947   .comments-0 {
948     opacity: 0.5;
949   }
950
951   .changeset_more .loader {
952     display: none;
953     width: 100%;
954   }
955 }
956
957 /* Rules for the browse sidebar */
958
959 #sidebar_content {
960   .browse-section {
961     padding: $lineheight/2 $lineheight;
962     border-bottom: 1px solid $grey;
963
964     h4:first-child {
965       margin-top: 0;
966       word-wrap: break-word;
967     }
968   }
969
970   .browse-section:last-of-type {
971     border-bottom: none;
972   }
973
974   .paginate {
975     float: right;
976     padding: 1px 6px;
977     border: 1px solid $lightgrey;
978     border-radius: 3px;
979   }
980
981   .browse-field {
982     margin-bottom: 10px;
983
984     h4 {
985       padding: 5px 0 5px 10px;
986       font-size: 12px;
987       border: 1px solid $grey;
988       border-radius: 4px 4px 0 0;
989       background-color: $offwhite;
990     }
991
992     p {
993       padding: 7px 10px;
994       font-size: 12px;
995       background-color: #FFF;
996       border: 1px solid $grey;
997       border-top: 0;
998       border-radius: 0 0 4px 4px;
999     }
1000   }
1001
1002   .browse-tag-list {
1003     background-color: $offwhite;
1004     border: 1px solid $grey;
1005     border-radius: 3px;
1006     table-layout: fixed;
1007     border-collapse: separate;
1008     border-spacing: 0;
1009     width: 100%;
1010
1011     th, td {
1012       border-bottom: 1px solid $grey;
1013     }
1014
1015     tr:last-child th, tr:last-child td {
1016       border-bottom: 0;
1017     }
1018
1019     .browse-tag-k,
1020     .browse-tag-v {
1021       width: 50%;
1022       padding: 6px 10px;
1023       word-wrap: break-word;
1024       white-space: pre-wrap;
1025     }
1026
1027     .browse-tag-k {
1028       font-weight: 500;
1029       background-color: $offwhite;
1030     }
1031
1032     .browse-tag-v {
1033       border-left: 1px solid $grey;
1034       background-color: #fff;
1035     }
1036
1037     .colour-preview-box {
1038       float: right;
1039       width: 14px;
1040       height: 14px;
1041       margin: 4px 0px;
1042       border: 1px solid rgba(0, 0, 0, .1);
1043       // add color via inline css on element: background-color: <tag value>;
1044     }
1045   }
1046
1047   .warning {
1048     margin: 0 0 $lineheight/2 0;
1049     padding: 0 $lineheight/2;
1050   }
1051
1052   .note-comments li, .changeset-comments li {
1053     margin: $lineheight/2 0;
1054
1055     p {
1056       margin: 10px 6px 0 6px;
1057       line-height: 1.5;
1058     }
1059   }
1060
1061   .comments-header {
1062     float: left;
1063   }
1064
1065   .subscribe-buttons {
1066     float: left;
1067     margin: 18px 10px 10px;
1068     min-width: 80px;
1069   }
1070
1071   .subscribe-buttons input {
1072     font-size: 90%;
1073     line-height: 15px;
1074     min-height: 20px;
1075   }
1076
1077   span.action-button:hover {
1078     cursor: pointer;
1079     text-decoration: underline;
1080   }
1081
1082   .note-description {
1083     overflow: hidden;
1084     margin: 0 0 10px 10px;
1085   }
1086
1087   .query-intro p {
1088     padding: $lineheight $lineheight $lineheight/2;
1089   }
1090
1091   .query-results {
1092     display: none;
1093     padding-bottom: $lineheight/2;
1094
1095     h3 {
1096       padding: 0 $lineheight;
1097     }
1098
1099     ul {
1100       li {
1101         &.query-result {
1102           cursor: pointer;
1103         }
1104
1105         &.selected {
1106           background: $list-highlight;
1107         }
1108       }
1109     }
1110   }
1111 }
1112
1113 /* Rules for export sidebar */
1114
1115 .export_form {
1116   padding: $lineheight;
1117
1118   .export_area_inputs,
1119   .export_button {
1120     text-align: center;
1121   }
1122
1123   .export_area_inputs {
1124     margin-bottom: $lineheight/2;
1125     input[type="text"] {
1126       width: 80px;
1127       text-align: center;
1128       margin-bottom: 5px;
1129     }
1130   }
1131
1132   .export_boxy {
1133     background: $lightgrey;
1134     border: 1px solid $grey;
1135     border-radius: 3px;
1136
1137     #maxlat { margin-top: -1px; }
1138     #minlon {
1139       float: left;
1140       /* no-r2 */ margin-left: -1px;
1141     }
1142     #maxlon {
1143       float: right;
1144       /* no-r2 */ margin-right: -1px;
1145     }
1146     #minlat { margin-bottom: 0; }
1147   }
1148
1149   .export_bound {
1150     margin: $lineheight/4;
1151   }
1152
1153   .export_button {
1154     margin-top: $lineheight;
1155     margin-bottom: $lineheight;
1156   }
1157
1158   dl {
1159     padding-left: $lineheight/2;
1160     dd {
1161       margin-left: 0;
1162       margin-bottom: 10px;
1163     }
1164   }
1165 }
1166
1167 /* Rules for the routing sidebar */
1168
1169 #sidebar_content {
1170   #routing_credit {
1171     text-align: center;
1172     padding: 0.5em;
1173   }
1174 }
1175
1176 /* Rules for edit pages */
1177
1178 .site-edit {
1179   #content {
1180     position: absolute;
1181     top: $headerHeight;
1182     bottom: 0;
1183     width: 100%;
1184   }
1185
1186   #map {
1187     height: 100%;
1188     overflow: hidden;
1189   }
1190 }
1191
1192 /* Rules for non-map content pages */
1193
1194 .content-heading {
1195   background: $lightgrey;
1196 }
1197
1198 .content-body {
1199   h1, h2, h3, p, ul, ol {
1200     margin-bottom: $lineheight;
1201   }
1202
1203   h1, h2, h3 {
1204     margin-top: $lineheight/2;
1205   }
1206 }
1207
1208 .content-inner {
1209   position: relative;
1210   max-width: 900px;
1211   margin: auto;
1212   padding: $lineheight;
1213 }
1214
1215 /* Overrides for pages that use new layout conventions */
1216
1217 .users-new,
1218 .users-create,
1219 .users-terms,
1220 .users-confirm {
1221   .content-heading .content-inner {
1222     height: 200px;
1223   }
1224 }
1225
1226 .header-illustration {
1227   background-position: 0 0;
1228   background-repeat: no-repeat;
1229   position: absolute;
1230   height: 200px;
1231   width: 100%;
1232   left: 0;
1233   bottom: 0;
1234
1235   &.new-user-main {
1236     background-image: image-url("sign-up-illustration.png");
1237   }
1238
1239   &.confirm-main {
1240     background-image: image-url("confirm-illustration.png");
1241   }
1242
1243   &.new-user-terms {
1244     background-image: image-url("terms-illustration.png");
1245   }
1246
1247   &.new-user-arm {
1248     height: 110px;
1249     width: 130px;
1250     left: 260px;
1251     top: 160px;
1252     background-image: image-url("sign-up-illustration-arm.png");
1253     z-index: 100;
1254   }
1255 }
1256
1257 [dir=rtl] .header-illustration {
1258   transform: scaleX(-1);
1259 }
1260
1261 #content.maximised {
1262   top: 0;
1263   left: 0;
1264   right: 0;
1265   bottom: 0;
1266   border: 0;
1267   z-index: 2000;
1268 }
1269
1270 /* Rules for small maps in content areas */
1271
1272 .content_map {
1273   height: 200px;
1274   border: 1px solid $grey;
1275   margin-bottom: $lineheight;
1276 }
1277
1278 @include media-breakpoint-up(md) {
1279   .content_map {
1280     height: 400px;
1281   }
1282 }
1283
1284 /* Rules for the new trace form */
1285
1286 #new_trace {
1287   input[type=text] {
1288     width: 50%;
1289     width: calc(100% - 150px);
1290     max-width: 500px;
1291   }
1292 }
1293
1294 /* Rules for the edit trace form */
1295
1296 .edit_trace {
1297   .standard-form-row p {
1298     margin-bottom: 0px;
1299   }
1300
1301   input[type=text] {
1302     width: 50%;
1303     width: calc(100% - 150px);
1304     max-width: 500px;
1305   }
1306 }
1307
1308 /* Rules for the user profile page */
1309
1310 #userinformation {
1311
1312   min-height: 100px;
1313   .userinformation-inner {
1314     float: left;
1315   }
1316   h2 {
1317     margin-top: 0;
1318   }
1319   .user-description {
1320     width: 100%;
1321     clear: both;
1322   }
1323   .deemphasize {
1324     margin: 0;
1325   }
1326 }
1327
1328 .admin-user-info small {
1329   margin-bottom: $lineheight/2;
1330   display: inline;
1331   margin-right: $lineheight;
1332 }
1333
1334 .contact-activity {
1335   margin-top: $lineheight;
1336   width: 100%;
1337 }
1338
1339 .activity-details p {
1340   margin-left: 70px;
1341   margin-bottom: 0;
1342 }
1343
1344 .users-show {
1345   // Silly exception; remove when user page is redesigned.
1346   .content-inner {
1347     max-width: none;
1348   }
1349   p#no_home_location {
1350     margin: $lineheight;
1351   }
1352   .user_thumbnail {
1353     margin-top: $lineheight/4;
1354     float: left;
1355   }
1356 }
1357
1358 /* Rules for the user map */
1359
1360 .content_map .leaflet-popup-content {
1361   margin: $lineheight/2;
1362   min-height: 50px;
1363 }
1364
1365 /* Rules for user popups on maps */
1366
1367 .user_popup {
1368   min-width: 200px;
1369   p {
1370     padding: 0 0 5px 0;
1371     margin-top: 0 0 0 60px;
1372     font-size: 12px;
1373   }
1374   img.user_thumbnail {
1375     float: left;
1376     margin: 0 $lineheight/2 0 0;
1377   }
1378 }
1379
1380 /* Rules for the user list */
1381
1382 #user_list {
1383   width: 100%;
1384
1385   tr {
1386     vertical-align: middle;
1387   }
1388
1389   p {
1390     margin-top: 0px;
1391     margin-bottom: 0px;
1392   }
1393 }
1394
1395 #user_list_actions {
1396   float: right;
1397   margin-top: $lineheight/2;
1398 }
1399
1400 /* Rules for the diary list page */
1401
1402 .diary_post {
1403   position: relative;
1404   padding-top: $lineheight;
1405   padding-bottom: $lineheight/2;
1406   border-top: 1px solid $grey;
1407
1408   &:first-of-type {
1409     margin-top: $lineheight/2;
1410   }
1411
1412   &.deleted {
1413     background-color: #fee;
1414   }
1415
1416   .post_heading {
1417     margin-bottom: $lineheight;
1418
1419     h2 {
1420       margin-top: 0;
1421       margin-bottom: $lineheight/2;
1422     }
1423   }
1424
1425   img.user_thumbnail {
1426     float: left;
1427   }
1428
1429   small.deemphasize {
1430     float: left;
1431     display: block;
1432   }
1433 }
1434
1435 .pagination {
1436   padding-top: $lineheight;
1437 }
1438
1439 /* Rules for the diary entry page */
1440
1441 .diary_entries {
1442   #map {
1443     position: relative;
1444     width: 90%;
1445     height: 400px;
1446     border: 1px solid $grey;
1447     display: none;
1448     margin-bottom: $lineheight;
1449   }
1450   #newcomment {
1451     border-top: 1px solid $grey;
1452     padding-top: $lineheight;
1453     margin-top: $lineheight/2;
1454   }
1455   .comments {
1456     max-width: 740px;
1457   }
1458   .diary-comment {
1459     border-top: 1px dashed $grey;
1460     padding-top: $lineheight/2;
1461     padding-bottom: $lineheight/2;
1462     &:first-child {
1463       margin-top: $lineheight/2;
1464       padding-top: $lineheight;
1465       border-top: 1px solid $grey;
1466     }
1467     &.deleted {
1468       background-color: #fee;
1469     }
1470     p {
1471       margin-bottom: $lineheight/2;
1472     }
1473     .comment-heading {
1474       margin-bottom: 0;
1475       margin-top: 0;
1476     }
1477   }
1478 }
1479
1480 .diary_entries-show img.user_thumbnail {
1481   float: left;
1482 }
1483
1484
1485 .diary-subscribe-buttons {
1486   position:relative;
1487   top: -30px;
1488   left: 130px;
1489 }
1490
1491 /* Rules for the log in page */
1492
1493 #login_auth_buttons {
1494   margin-bottom: 0;
1495 }
1496
1497 #login_auth_buttons li {
1498   float: left;
1499   padding: $lineheight/4 $lineheight/2;
1500 }
1501
1502 /* Rules for the account confirmation page */
1503
1504 .users-terms {
1505   .legale {
1506     border: 1px solid $grey;
1507     padding: $lineheight;
1508     margin-bottom: $lineheight;
1509     overflow: auto;
1510     height: 20em;
1511
1512     li {
1513       list-style: inherit;
1514     }
1515
1516     ol ol {
1517       list-style-type: lower-alpha;
1518     }
1519   }
1520
1521   #decline {
1522     background: $lightblue;
1523     &:hover {
1524       background: darken($lightblue, $hovercolor);
1525     }
1526   }
1527 }
1528
1529 /* Rules for the account settings page */
1530
1531 #accountForm .user_map {
1532   position: relative;
1533   width: 500px;
1534   height: 400px;
1535   border: 1px solid $grey;
1536 }
1537
1538 #accountForm .user_image {
1539   margin-bottom: 0;
1540 }
1541
1542 #accountForm #user_image {
1543   margin-left: 20px;
1544 }
1545
1546 #accountForm ul.accountImage-options {
1547   margin-left: 120px;
1548 }
1549
1550 .nohome .location {
1551   display: none;
1552 }
1553
1554 #homerow .message {
1555   display: none;
1556 }
1557
1558 .nohome .message {
1559   display: inline !important;
1560 }
1561
1562 /* Rules for the oauth settings page */
1563
1564 .oauth_clients .buttons .oauth-edit {
1565   border-radius: 2px 0 0 2px;
1566 }
1567
1568 .oauth_clients .buttons .oauth-delete {
1569   border-radius: 0 2px 2px 0;
1570 }
1571
1572 /* Rules for the oauth authorization page */
1573
1574 .oauth-authorize ul {
1575   list-style: none;
1576 }
1577
1578 /* Rules for messages pages */
1579
1580 .messages {
1581   input[type="submit"] {
1582     margin: auto;
1583   }
1584
1585   .inbox-row {
1586     background: $offwhite;
1587   }
1588
1589   .inbox-row-unread {
1590     background: #CBEEA7;
1591   }
1592
1593   .right {
1594     float: right;
1595   }
1596 }
1597
1598 .inbox-row .inbox-mark-read {
1599   display: none;
1600 }
1601
1602 .info-line {
1603   margin-bottom: $lineheight;
1604   padding: $lineheight/4 0px 4px 0px;
1605   border-bottom: 1px solid $grey;
1606
1607   form, form div {
1608     display: inline;
1609   }
1610 }
1611
1612 .info-line .user_thumbnail_tiny {
1613   vertical-align: middle;
1614 }
1615
1616 .inbox-sent {
1617   white-space: nowrap;
1618 }
1619
1620 .inbox-mark-unread,
1621 .inbox-mark-read,
1622 .inbox-delete {
1623   width: 1%;
1624 }
1625
1626 .inbox-row-unread .inbox-mark-unread {
1627   display: none;
1628 }
1629
1630 /* Rules for "flash" notice boxes shown at the top of the content area */
1631
1632 .flash {
1633   padding: $lineheight;
1634
1635   &.error {
1636     background-color: #ff7070;
1637   }
1638
1639   &.warning {
1640     background-color: #ffe0cc;
1641   }
1642
1643   &.notice {
1644     background-color: #CBEEA7;
1645   }
1646
1647   div.message {
1648     display: inline-block;
1649     margin-left: $lineheight / 2;
1650     vertical-align: middle;
1651
1652     p {
1653       margin-top: $lineheight * 0.5;
1654       margin-bottom: $lineheight * 0.5;
1655
1656       &:first-child {
1657         margin-top: 0px;
1658       }
1659
1660       &:last-child {
1661         margin-bottom: 0px;
1662       }
1663     }
1664   }
1665 }
1666
1667 /* Rules for highlighting fields with rails validation errors */
1668
1669 .formError {
1670   display: inline-block;
1671   padding: 5px 10px;
1672   margin-top: 5px;
1673   border-radius: 4px;
1674   font-size: 12px;
1675   color: #fff;
1676   background-color: #ff7070;
1677 }
1678
1679 /* Rules for rails validation error boxes */
1680
1681 #errorExplanation {
1682   width: 400px;
1683   border: 2px solid #ff7070;
1684   padding: 0 $lineheight/2;
1685   margin-bottom: $lineheight;
1686   background-color: #f0f0f0;
1687
1688   h2 {
1689     margin: 0 -10px 10px -10px;
1690     padding: $lineheight/4 $lineheight/4 $lineheight/4 15px;
1691     font-weight: bold;
1692     font-size: 12px;
1693     background-color: #c00;
1694     color: #fff;
1695     text-align: left;
1696   }
1697
1698   p {
1699     color: #333;
1700     margin-bottom: 0px;
1701     padding: $lineheight/4;
1702   }
1703 }
1704
1705 /* Rules for forms */
1706
1707 .standard-form {
1708   fieldset {
1709     margin-bottom: $lineheight;
1710   }
1711   label.standard-label {
1712     display: block;
1713     margin-bottom: $lineheight/4;
1714     font-size: $typeheight;
1715     font-weight: bold;
1716     line-height: 1.5;
1717   }
1718   label.standard-label.secondary {
1719     display: inline-block;
1720     font-weight: normal;
1721   }
1722   .form-help {
1723     font-weight: normal;
1724   }
1725   .form-column {
1726     float: left;
1727     margin-right: 20px;
1728   }
1729   .form-divider {
1730     margin-top: $lineheight;
1731     padding-top: $lineheight;
1732     border-top: 1px solid $lightgrey;
1733   }
1734   .horizontal-list .standard-form-row {
1735     float: left;
1736     padding-right: 10px;
1737   }
1738   .standard-form-row {
1739     margin-bottom: $lineheight/2;
1740   }
1741   .form-list {
1742     margin-bottom: 0;
1743   }
1744   .form-list li {
1745     margin-bottom: 5px;
1746     list-style-type: none;
1747   }
1748   input[type="checkbox"],
1749   input[type="radio"] {
1750     float: left;
1751     margin-top: 5px;
1752   }
1753 }
1754
1755 #remember_me_openid {
1756   display: block;
1757 }
1758
1759 select {
1760   padding: 2px;
1761 }
1762
1763 input[type="checkbox"],
1764 input[type="radio"] {
1765     margin-right: 5px;
1766 }
1767
1768 input[type="text"],
1769 input[type="email"],
1770 input[type="url"],
1771 input[type="password"],
1772 textarea {
1773   color: #222;
1774   background-color: #fff;
1775   border: 1px solid $grey;
1776   border-radius: 3px;
1777   padding: 2px 5px;
1778   margin: 0;
1779   width: 200px;
1780
1781   &.field_with_errors {
1782     border: 2px solid #ff7070;
1783   }
1784 }
1785
1786 textarea {
1787   padding: 5px;
1788   width: 100%;
1789   min-height: 50px;
1790   resize: vertical;
1791 }
1792
1793 /* Rules for user images */
1794
1795 img.user_image {
1796   max-width: 100px;
1797   max-height: 100px;
1798   border: 1px solid $grey;
1799   margin-bottom: $lineheight;
1800   float: left;
1801   margin-right: $lineheight;
1802 }
1803
1804 img.user_thumbnail {
1805   max-width: 50px;
1806   max-height: 50px;
1807   border: 1px solid $grey;
1808   margin-right: $lineheight;
1809 }
1810
1811 img.user_thumbnail_tiny {
1812   width: auto;
1813   height: auto;
1814   max-width: 25px;
1815   max-height: 25px;
1816   border: 1px solid $grey;
1817 }
1818
1819 /* Rules for geo microformats */
1820
1821 abbr.geo {
1822   border-bottom: none;
1823 }
1824
1825 /* General styles for action lists / subnavs / pager navs */
1826
1827 ul.secondary-actions {
1828   font-style: normal;
1829   margin-bottom: 0;
1830   margin-left: 0;
1831   padding: 0;
1832   &.pager {
1833     display: inline-block;
1834     margin-right: 60px;
1835   }
1836   > li {
1837     display: block;
1838     float: left;
1839     list-style: none;
1840     border-left: 1px solid $grey;
1841     padding-left: $lineheight/2;
1842     margin-right: $lineheight/2;
1843     &:first-child {
1844       border-left: 0;
1845       padding-left: 0;
1846     }
1847     &:last-child {
1848       margin-right: 0px;
1849     }
1850   }
1851 }
1852
1853 div.secondary-actions {
1854   padding: 10px;
1855   text-align: center;
1856 }
1857
1858 /* Utility for managing inner content areas */
1859
1860 .inner22 { padding: $lineheight;}
1861
1862 .inner12 { padding: $lineheight/2 $lineheight;}
1863
1864 .inner11 { padding: $lineheight/2;}
1865
1866 .inner20 { padding: $lineheight 0;}
1867
1868 .inner02 { padding: 0 $lineheight;}
1869
1870 /* Utility for general button styles */
1871
1872 input[type="button"],
1873 input[type="submit"],
1874 input[type="reset"],
1875 a.button {
1876   cursor: pointer;
1877   border: 0;
1878   display: inline-block;
1879   padding: $lineheight/4 $lineheight/2;
1880   min-height: 20px + $lineheight/2;
1881   min-width: 120px;
1882   margin: 0 0 $lineheight/2 0;
1883   color: white;
1884   background: $blue;
1885   text-align: center;
1886   border-radius: 2px;
1887   &:hover {
1888     background: darken($blue, $hovercolor);
1889     text-decoration: none;
1890   }
1891   &.deemphasize {
1892     background: $lightblue;
1893     &:hover {
1894       background: darken($lightblue, $hovercolor);
1895     }
1896   }
1897   &:disabled {
1898     background: $lightgrey;
1899     &:hover {
1900       background: $lightgrey;
1901     }
1902   }
1903   &:last-child {
1904     margin-bottom: 0;
1905   }
1906 }
1907
1908 input[type="button"],
1909 input[type="submit"],
1910 input[type="reset"] {
1911   line-height: normal;
1912 }
1913
1914 a.button {
1915   line-height: 20px;
1916 }
1917
1918 .buttons {
1919   min-width: 200px;
1920   input[type="submit"],
1921   input[type="button"],
1922   input[type="reset"],
1923   .button,
1924   .button_to {
1925     box-sizing: border-box;
1926     float: left;
1927     border-radius: 0;
1928     margin:0;
1929     min-width: 75px;
1930     max-width: 180px;
1931     border-right:1px solid white;
1932     text-overflow: ellipsis;
1933     white-space: nowrap;
1934     overflow: hidden;
1935   }
1936   input:first-child,
1937   .button:first-child,
1938   .button_to:first-child {
1939     border-radius:2px 0 0 2px;
1940   }
1941   input:last-child,
1942   .button:last-child,
1943   .button_to:last-child {
1944     border-radius:0 2px 2px 0;
1945     border-right-width: 0;
1946   }
1947   input:only-child,
1948   .button:only-child,
1949   .button_to:only-child,
1950   *[value="Hide"] + input:last-child,
1951   *[value="Hide"] + .button:last-child,
1952   *[value="Hide"] + .button_to:last-child {
1953     border-radius:2px;
1954     border-right-width: 0;
1955   }
1956     /* if a 3-button set has a hidden middle button */
1957   *[value="Hide"] + input:nth-child(3),
1958   *[value="Hide"] + .button:nth-child(3),
1959   *[value="Hide"] + .button_to:nth-child(3) {
1960     border-radius:0 2px 2px 0;
1961     border-right-width: 0;
1962   }
1963   /* if a 3-button set starts with a hidden button */
1964   *[value="Hide"] + input:nth-child(2):not(:last-child),
1965   *[value="Hide"] + .button:nth-child(2):not(:last-child),
1966   *[value="Hide"] + .button_to:nth-child(2):not(:last-child) {
1967     border-radius:2px 0 0 2px;
1968     border-right-width: 1px;
1969   }
1970 }
1971
1972 /* Customise the background colour of striped tables */
1973
1974 .table-striped > tbody > tr:nth-child(2n+1) > td,
1975 .table-striped > tbody > tr:nth-child(2n+1) > th {
1976    background-color: $offwhite;
1977 }
1978
1979 /* Rules for OpenID logo */
1980
1981 .openid_logo {
1982   vertical-align: text-bottom;
1983   border: 0;
1984 }
1985
1986 /* Rules for rich text */
1987
1988 .richtext,
1989 .prose {
1990   code {
1991     font-size: 13px;
1992     background: $lightgrey;
1993     padding: 2px 3px;
1994   }
1995
1996   pre {
1997     font-size: 13px;
1998     background: $lightgrey;
1999     padding: 2px 3px;
2000     white-space: pre-wrap;
2001
2002     code {
2003       padding: 0;
2004     }
2005   }
2006
2007   img {
2008     padding: $lineheight;
2009     background-color: $offwhite;
2010     display: block;
2011     max-width: 100%;
2012     margin: auto;
2013   }
2014
2015   blockquote {
2016     border-left: $lineheight solid $offwhite;
2017     padding-left: $lineheight;
2018     margin: 0;
2019     color: $darkgrey;
2020   }
2021 }
2022
2023 .diary_post .richtext {
2024     margin-top: $lineheight;
2025   }
2026
2027 .comments .richtext {
2028   margin-left: 70px;
2029   margin-top: 0;
2030 }
2031
2032 /* Rules for rich text editors */
2033
2034 input.richtext_title[type="text"] {
2035   width: 50%;
2036   width: calc(100% - 235px);
2037
2038   @media only screen and (max-width:768px) {
2039     width: 100%;
2040   }
2041 }
2042
2043 .richtext_container {
2044   margin-bottom: $lineheight;
2045
2046   .richtext_content {
2047     width: 50%;
2048     width: calc(100% - 235px);
2049     display: inline-block;
2050     vertical-align: top;
2051
2052     @media only screen and (max-width:768px) {
2053       width: 100%;
2054     }
2055
2056     .richtext_preview {
2057       display: inline-block;
2058       padding: $lineheight;
2059       background-color: $offwhite;
2060       overflow-x: auto;
2061
2062       &.loading {
2063         background-image: image-url("loading.gif");
2064         background-repeat: no-repeat;
2065         background-position: center;
2066       }
2067
2068       > :first-child {
2069         margin-top: 0px;
2070       }
2071     }
2072   }
2073
2074   .richtext_help {
2075     display: inline-block;
2076     vertical-align: top;
2077     margin-left: 15px;
2078     background-color: $offwhite;
2079     padding: $lineheight/2;
2080     width: 220px;
2081
2082     ul {
2083       margin-bottom: 0;
2084     }
2085
2086     h4.heading, li {
2087       border-bottom: 1px solid $grey;
2088       margin-bottom: $lineheight/4;
2089       padding-bottom: $lineheight/4;
2090     }
2091
2092     li h4, li span, li p {
2093       display: inline-block;
2094       vertical-align: top;
2095       font-size: 11px;
2096     }
2097
2098     li h4 {
2099       width: 40%;
2100       margin: 0;
2101     }
2102
2103     li span, li p {
2104       width: 50%;
2105       margin-left: $lineheight/2;
2106       margin-bottom: $lineheight/4;
2107       white-space: nowrap;
2108     }
2109   }
2110 }
2111
2112 /* Rules for the user notes list */
2113
2114 .note_list {
2115   tr.creator {
2116     background-color: $offwhite;
2117   }
2118 }
2119
2120 /* Rules for the iD editor */
2121
2122 .id-embed {
2123   width: 100%;
2124   height: 100%;
2125 }
2126
2127 /* Rules for the "Welcome" page */
2128 .site-welcome, .site-fixthemap {
2129   .center {
2130     text-align: center;
2131     .sprite {
2132       float: none;
2133       margin: auto;
2134     }
2135   }
2136
2137   .sprite {
2138     background-image: image-url("welcome-sprite.png");
2139     background-size: 500px 250px;
2140     display: block;
2141     float: left;
2142   }
2143
2144   .icon-list {
2145     padding-bottom: 20px;
2146     div {
2147       margin-bottom: 10px;
2148       p {
2149         padding-top: 10px;
2150       }
2151     }
2152   }
2153   .sprite.small {
2154     width: 50px;
2155     height: 50px;
2156   }
2157
2158   .sprite.x {
2159     /* no-r2 */ background-position: -50px 0;
2160   }
2161
2162   .sprite.term {
2163     margin-right: 10px;
2164     vertical-align: middle;
2165   }
2166
2167   .sprite.node {
2168     /* no-r2 */ background-position: -100px 0;
2169   }
2170
2171   .sprite.way {
2172     /* no-r2 */ background-position: -150px 0;
2173   }
2174
2175   .sprite.tag {
2176     /* no-r2 */ background-position: -200px 0;
2177   }
2178
2179   .sprite.editor {
2180     /* no-r2 */ background-position: -250px 0;
2181   }
2182
2183   .sprite.question {
2184     /* no-r2 */ background-position: -300px 0;
2185   }
2186
2187   .sprite.rules {
2188     /* no-r2 */ background-position: -350px 0;
2189   }
2190
2191   .start-mapping {
2192     margin: auto;
2193     cursor: pointer;
2194     border: none;
2195     padding: 20px 40px;
2196     font-size: 30px;
2197     text-decoration: none;
2198   }
2199
2200   .icon.note {
2201     background-color: #333;
2202     border-radius: 4px;
2203   }
2204 }
2205
2206 .site-about #content {
2207   background-color: $lightgrey;
2208   background-position: 50% 50%;
2209   background-repeat: no-repeat;
2210   background-size: cover;
2211   background-attachment: fixed;
2212
2213
2214   .content-inner {
2215     position: relative;
2216     color: #333;
2217     min-width: 320px;
2218     max-width: 640px;
2219   }
2220
2221   .text {
2222     background: white;
2223     padding: 40px;
2224   }
2225
2226   .attr {
2227     position: relative;
2228     padding: 170px 40px 20px;
2229     background: #333;
2230     background: rgba(0, 0, 0, .8);
2231     margin-bottom: 0;
2232     margin-top: -20px;
2233
2234     h1 {
2235       display: block;
2236       color: white;
2237       font-weight: 300;
2238       font-size: 34px;
2239       span {
2240         color: $vibrant-green;
2241       }
2242     }
2243
2244     .user-image {
2245       position: absolute;
2246       top: 0px;
2247       right: 240px;
2248       left: 0px;
2249       height: 150px;
2250       background-position: 0 50%;
2251       background-repeat: no-repeat;
2252       background-image: image-url('about/osm.png');
2253       background-size: cover;
2254       background-color: $vibrant-green;
2255     }
2256
2257     .byosm {
2258       position: absolute;
2259       top: 0px;
2260       right: 0px;
2261       z-index: 1;
2262       width: 240px;
2263       height: 150px;
2264       padding: 20px 20px 20px 40px;
2265       font: 500 20px/24px Helvetica, Arial, sans-serif;
2266       white-space: nowrap;
2267       color: #fff;
2268       background: $vibrant-green;
2269     }
2270
2271     .byosm span {
2272       display: inline-block;
2273       width: 20px;
2274       margin-left: -20px;
2275     }
2276   }
2277
2278   .icon {
2279     width: 30px;
2280     height: 30px;
2281     margin-right: 10px;
2282     vertical-align: middle;
2283     background: 40px 40px image-url('about/sprite.png') no-repeat;
2284
2285     &.local {
2286       /* no-r2 */
2287       background-position: 0px 0px;
2288     }
2289     &.community {
2290       /* no-r2 */
2291       background-position: 0px -40px;
2292     }
2293     &.open {
2294       /* no-r2 */
2295       background-position: 0px -80px;
2296     }
2297     &.partners {
2298       /* no-r2 */
2299       background-position: 0px -120px;
2300     }
2301     &.infringement {
2302       /* no-r2 */
2303       background-position: 0px -160px;
2304     }
2305     &.legal {
2306       /* no-r2 */
2307       background-position: -45px -160px;
2308     }
2309   }
2310 }
2311
2312 @import 'browse';
2313
2314 @media only screen and (max-width:960px) {
2315   .header-illustration.new-user-arm {
2316     display: none;
2317   }
2318 }
2319
2320 .read-reports {
2321   background: $lightgrey;
2322   opacity: 0.7;
2323 }