]> git.openstreetmap.org Git - rails.git/blob - app/assets/stylesheets/common.scss
Convert data feature warning to use bootstrap alert
[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   input {
703     display: block;
704     margin-left: auto;
705     margin-right: auto;
706   }
707 }
708
709 #sidebar {
710   #sidebar_loader,
711   .search_more {
712     width: 100%;
713     margin: $lineheight auto;
714   }
715
716   .loader,
717   .load_more {
718     text-align: center;
719     margin: auto;
720     width: 40px;
721     display: block;
722   }
723 }
724
725 /* Rules for the search and direction forms */
726
727 header .search_forms,
728 .directions_form {
729   display: none;
730 }
731
732 .search_form,
733 .directions_form {
734   position: relative;
735   padding: $lineheight/2;
736   background-color: $lightgrey;
737
738   .query_wrapper {
739     position: relative;
740     overflow: hidden;
741     border-radius: 2px 0 0 2px;
742   }
743
744   input[type=text] {
745     width: 100%;
746     height: 30px;
747     transition: 300ms linear;
748   }
749
750   input[type=text].overflow {
751     border-right: none;
752     border-radius: 3px 0px 0px 3px;
753   }
754
755   input:focus {
756     outline: none;
757     box-shadow: 0px 0px 7px $vibrant-green;
758   }
759
760   input[type=submit].float {
761     float: right;
762     width: auto;
763     min-width: 0;
764     border-radius: 0 2px 2px 0;
765   }
766
767   input.error {
768     background-color: rgba($red, 0.4);
769   }
770
771   select {
772     /* this next line is to polyfill the vertical alignment of text within a select element,
773      * which is different between firefox and chrome. */
774     padding: 0.3em 0;
775   }
776
777   .query_options {
778     text-align: right;
779     font-size: 10px;
780     color: $blue;
781   }
782
783   .describe_location {
784     position: absolute;
785     top: 6px;
786     right: 6px;
787     font-size: 10px;
788     color: $blue;
789   }
790
791   .switch_link {
792     float: right;
793     width: auto;
794     min-width: 0;
795     margin-left: 6px;
796   }
797
798   img.button {
799     display: block;
800     width: 20px;
801     height: 20px;
802   }
803
804   span.force_width {
805     width: 100%;
806     padding-right: 25px;
807     display: block;
808   }
809
810   select.routing_engines {
811     min-height: 30px;
812     margin: 0px 0px 5px 25px;
813   }
814
815   input.routing_go {
816     min-width: 100px;
817     float: right;
818   }
819
820   div.header {
821     width: 100%;
822     height: 30px;
823   }
824
825   div.line {
826     width: 100%;
827     margin: 0px 0px 5px 0px;
828   }
829
830   div.loader_copy {
831     display: none;
832
833     img {
834       vertical-align: middle;
835     }
836   }
837
838   a.reverse_directions {
839     cursor: pointer;
840     margin: 0px 0px 5px 25px;
841   }
842 }
843
844 /* Rules for the map key which appears in the popout sidebar */
845
846 #mapkey {
847  .mapkey-table-key img {
848     display: block;
849     margin-left: auto;
850     margin-right: auto;
851   }
852 }
853
854 /* Rules for search sidebar */
855
856 #sidebar .search_results_entry {
857   ul li {
858     cursor: pointer;
859     &.selected { background: $list-highlight; }
860   }
861
862   .search_more .loader {
863     display: none;
864     width: 100%;
865   }
866 }
867
868 .search_results_error {
869   color: #f00;
870   padding: 10px 20px;
871 }
872
873 /* Rules for routing */
874
875 #sidebar_content>table {
876     padding: 5px 20px 10px 15px;
877     width: 100%;
878     border-collapse: separate;
879     border-spacing: 0;
880 }
881
882 div.direction {
883   background-image: image-url('routing-sprite.png');
884   width: 20px;
885   height: 20px;
886   background-repeat: no-repeat;
887 }
888 @for $i from 0 through 25 {
889 div.direction.i#{$i} { background-position: #{($i)*-20}px 0px; }
890 }
891
892 p#routing_summary {
893     padding: 0 $lineheight $lineheight/4;
894 }
895
896 td.instruction, td.distance {
897     padding-top: $lineheight/5;
898     padding-bottom: $lineheight/5;
899     border-bottom: 1px solid $grey;
900 }
901 td.distance {
902     color: $darkgrey;
903     text-align: right;
904     font-size: x-small;
905 }
906 tr.turn {
907     cursor: pointer;
908 }
909 tr.turn:hover {
910     background: $list-highlight;
911 }
912 .routing_engines, #route_from, #route_to { margin-left: 25px; }
913 .routing_marker { width: 15px; position: absolute; cursor: move; }
914
915 /* Rules for entity history */
916
917 #sidebar_content {
918   .browse_details {
919     position: relative;
920     border-bottom: $keyline;
921   }
922 }
923
924 .browse_status {
925   display: none;
926 }
927
928 /* Rules for the history sidebar */
929
930 #sidebar .changesets {
931   li {
932     cursor: pointer;
933
934     &.selected { background: $list-highlight; }
935     /* color is derived from changeset bbox fillColor in history.js */
936   }
937
938   .comments {
939     float: right;
940     color: $darkgrey;
941   }
942
943   .comments-0 {
944     opacity: 0.5;
945   }
946
947   .changeset_more .loader {
948     display: none;
949     width: 100%;
950   }
951 }
952
953 /* Rules for the browse sidebar */
954
955 #sidebar_content {
956   .browse-section {
957     padding: $lineheight/2 $lineheight;
958     border-bottom: 1px solid $grey;
959
960     h4:first-child {
961       margin-top: 0;
962       word-wrap: break-word;
963     }
964   }
965
966   .browse-section:last-of-type {
967     border-bottom: none;
968   }
969
970   .paginate {
971     float: right;
972     padding: 1px 6px;
973     border: 1px solid $lightgrey;
974     border-radius: 3px;
975   }
976
977   .browse-field {
978     margin-bottom: 10px;
979
980     h4 {
981       padding: 5px 0 5px 10px;
982       font-size: 12px;
983       border: 1px solid $grey;
984       border-radius: 4px 4px 0 0;
985       background-color: $offwhite;
986     }
987
988     p {
989       padding: 7px 10px;
990       font-size: 12px;
991       background-color: #FFF;
992       border: 1px solid $grey;
993       border-top: 0;
994       border-radius: 0 0 4px 4px;
995     }
996   }
997
998   .browse-tag-list {
999     background-color: $offwhite;
1000     border: 1px solid $grey;
1001     border-radius: 3px;
1002     table-layout: fixed;
1003     border-collapse: separate;
1004     border-spacing: 0;
1005     width: 100%;
1006
1007     th, td {
1008       border-bottom: 1px solid $grey;
1009     }
1010
1011     tr:last-child th, tr:last-child td {
1012       border-bottom: 0;
1013     }
1014
1015     .browse-tag-k,
1016     .browse-tag-v {
1017       width: 50%;
1018       padding: 6px 10px;
1019       word-wrap: break-word;
1020       white-space: pre-wrap;
1021     }
1022
1023     .browse-tag-k {
1024       font-weight: 500;
1025       background-color: $offwhite;
1026     }
1027
1028     .browse-tag-v {
1029       border-left: 1px solid $grey;
1030       background-color: #fff;
1031     }
1032
1033     .colour-preview-box {
1034       float: right;
1035       width: 14px;
1036       height: 14px;
1037       margin: 4px 0px;
1038       border: 1px solid rgba(0, 0, 0, .1);
1039       // add color via inline css on element: background-color: <tag value>;
1040     }
1041   }
1042
1043   .warning {
1044     margin: 0 0 $lineheight/2 0;
1045     padding: 0 $lineheight/2;
1046   }
1047
1048   .note-comments li, .changeset-comments li {
1049     margin: $lineheight/2 0;
1050
1051     p {
1052       margin: 10px 6px 0 6px;
1053       line-height: 1.5;
1054     }
1055   }
1056
1057   .comments-header {
1058     float: left;
1059   }
1060
1061   .subscribe-buttons {
1062     float: left;
1063     margin: 18px 10px 10px;
1064     min-width: 80px;
1065   }
1066
1067   .subscribe-buttons input {
1068     font-size: 90%;
1069     line-height: 15px;
1070     min-height: 20px;
1071   }
1072
1073   span.action-button:hover {
1074     cursor: pointer;
1075     text-decoration: underline;
1076   }
1077
1078   .note-description {
1079     overflow: hidden;
1080     margin: 0 0 10px 10px;
1081   }
1082
1083   .query-intro p {
1084     padding: $lineheight $lineheight $lineheight/2;
1085   }
1086
1087   .query-results {
1088     display: none;
1089     padding-bottom: $lineheight/2;
1090
1091     h3 {
1092       padding: 0 $lineheight;
1093     }
1094
1095     ul {
1096       li {
1097         &.query-result {
1098           cursor: pointer;
1099         }
1100
1101         &.selected {
1102           background: $list-highlight;
1103         }
1104       }
1105     }
1106   }
1107 }
1108
1109 /* Rules for export sidebar */
1110
1111 .export_form {
1112   padding: $lineheight;
1113
1114   .export_area_inputs,
1115   .export_button {
1116     text-align: center;
1117   }
1118
1119   .export_area_inputs {
1120     margin-bottom: $lineheight/2;
1121     input[type="text"] {
1122       width: 80px;
1123       text-align: center;
1124       margin-bottom: 5px;
1125     }
1126   }
1127
1128   .export_boxy {
1129     background: $lightgrey;
1130     border: 1px solid $grey;
1131     border-radius: 3px;
1132
1133     #maxlat { margin-top: -1px; }
1134     #minlon {
1135       float: left;
1136       /* no-r2 */ margin-left: -1px;
1137     }
1138     #maxlon {
1139       float: right;
1140       /* no-r2 */ margin-right: -1px;
1141     }
1142     #minlat { margin-bottom: 0; }
1143   }
1144
1145   .export_bound {
1146     margin: $lineheight/4;
1147   }
1148
1149   .export_button {
1150     margin-top: $lineheight;
1151     margin-bottom: $lineheight;
1152   }
1153
1154   dl {
1155     padding-left: $lineheight/2;
1156     dd {
1157       margin-left: 0;
1158       margin-bottom: 10px;
1159     }
1160   }
1161 }
1162
1163 /* Rules for the routing sidebar */
1164
1165 #sidebar_content {
1166   #routing_credit {
1167     text-align: center;
1168     padding: 0.5em;
1169   }
1170 }
1171
1172 /* Rules for edit pages */
1173
1174 .site-edit {
1175   #content {
1176     position: absolute;
1177     top: $headerHeight;
1178     bottom: 0;
1179     width: 100%;
1180   }
1181
1182   #map {
1183     height: 100%;
1184     overflow: hidden;
1185   }
1186 }
1187
1188 /* Rules for non-map content pages */
1189
1190 .content-heading {
1191   background: $lightgrey;
1192 }
1193
1194 .content-inner {
1195   position: relative;
1196   max-width: 900px;
1197   margin: auto;
1198   padding: $lineheight;
1199 }
1200
1201 /* Overrides for pages that use new layout conventions */
1202
1203 .users-new,
1204 .users-create,
1205 .users-terms,
1206 .users-confirm {
1207   .content-heading .content-inner {
1208     height: 200px;
1209   }
1210 }
1211
1212 .header-illustration {
1213   background-position: 0 0;
1214   background-repeat: no-repeat;
1215   position: absolute;
1216   height: 200px;
1217   width: 100%;
1218   left: 0;
1219   bottom: 0;
1220
1221   &.new-user-main {
1222     background-image: image-url("sign-up-illustration.png");
1223   }
1224
1225   &.confirm-main {
1226     background-image: image-url("confirm-illustration.png");
1227   }
1228
1229   &.new-user-terms {
1230     background-image: image-url("terms-illustration.png");
1231   }
1232
1233   &.new-user-arm {
1234     height: 110px;
1235     width: 130px;
1236     left: 260px;
1237     top: 160px;
1238     background-image: image-url("sign-up-illustration-arm.png");
1239     z-index: 100;
1240   }
1241 }
1242
1243 [dir=rtl] .header-illustration {
1244   transform: scaleX(-1);
1245 }
1246
1247 #content.maximised {
1248   top: 0;
1249   left: 0;
1250   right: 0;
1251   bottom: 0;
1252   border: 0;
1253   z-index: 2000;
1254 }
1255
1256 /* Rules for small maps in content areas */
1257
1258 .content_map {
1259   height: 200px;
1260   border: 1px solid $grey;
1261   margin-bottom: $lineheight;
1262 }
1263
1264 @include media-breakpoint-up(md) {
1265   .content_map {
1266     height: 400px;
1267   }
1268 }
1269
1270 /* Rules for the new trace form */
1271
1272 #new_trace {
1273   input[type=text] {
1274     width: 50%;
1275     width: calc(100% - 150px);
1276     max-width: 500px;
1277   }
1278 }
1279
1280 /* Rules for the edit trace form */
1281
1282 .edit_trace {
1283   .standard-form-row p {
1284     margin-bottom: 0px;
1285   }
1286
1287   input[type=text] {
1288     width: 50%;
1289     width: calc(100% - 150px);
1290     max-width: 500px;
1291   }
1292 }
1293
1294 /* Rules for the user profile page */
1295
1296 #userinformation {
1297   min-height: 100px;
1298   .userinformation-inner {
1299     float: left;
1300   }
1301   .user-description {
1302     width: 100%;
1303     clear: both;
1304   }
1305 }
1306
1307 .admin-user-info small {
1308   margin-bottom: $lineheight/2;
1309   display: inline;
1310   margin-right: $lineheight;
1311 }
1312
1313 .contact-activity {
1314   margin-top: $lineheight;
1315   width: 100%;
1316 }
1317
1318 .activity-details p {
1319   margin-left: 70px;
1320   margin-bottom: 0;
1321 }
1322
1323 .users-show {
1324   // Silly exception; remove when user page is redesigned.
1325   .content-inner {
1326     max-width: none;
1327   }
1328   p#no_home_location {
1329     margin: $lineheight;
1330   }
1331   .user_thumbnail {
1332     margin-top: $lineheight/4;
1333     float: left;
1334   }
1335 }
1336
1337 /* Rules for the user map */
1338
1339 .content_map .leaflet-popup-content {
1340   margin: $lineheight/2;
1341   min-height: 50px;
1342 }
1343
1344 /* Rules for user popups on maps */
1345
1346 .user_popup {
1347   min-width: 200px;
1348   p {
1349     padding: 0 0 5px 0;
1350     margin-top: 0 0 0 60px;
1351     font-size: 12px;
1352   }
1353   img.user_thumbnail {
1354     float: left;
1355     margin: 0 $lineheight/2 0 0;
1356   }
1357 }
1358
1359 /* Rules for the user list */
1360
1361 #user_list {
1362   width: 100%;
1363
1364   tr {
1365     vertical-align: middle;
1366   }
1367
1368   p {
1369     margin-top: 0px;
1370     margin-bottom: 0px;
1371   }
1372 }
1373
1374 #user_list_actions {
1375   float: right;
1376   margin-top: $lineheight/2;
1377 }
1378
1379 /* Rules for the diary list page */
1380
1381 .diary_post {
1382   position: relative;
1383   padding-top: $lineheight;
1384   padding-bottom: $lineheight/2;
1385   border-top: 1px solid $grey;
1386
1387   &:first-of-type {
1388     margin-top: $lineheight/2;
1389   }
1390
1391   &.deleted {
1392     background-color: #fee;
1393   }
1394
1395   .post_heading {
1396     margin-bottom: $lineheight;
1397
1398     h2 {
1399       margin-top: 0;
1400       margin-bottom: $lineheight/2;
1401     }
1402   }
1403
1404   img.user_thumbnail {
1405     float: left;
1406   }
1407
1408   small.deemphasize {
1409     float: left;
1410     display: block;
1411   }
1412 }
1413
1414 .pagination {
1415   padding-top: $lineheight;
1416 }
1417
1418 /* Rules for the diary entry page */
1419
1420 .diary_entries {
1421   #map {
1422     position: relative;
1423     width: 90%;
1424     height: 400px;
1425     border: 1px solid $grey;
1426     display: none;
1427     margin-bottom: $lineheight;
1428   }
1429   #newcomment {
1430     border-top: 1px solid $grey;
1431     padding-top: $lineheight;
1432     margin-top: $lineheight/2;
1433   }
1434   .comments {
1435     max-width: 740px;
1436   }
1437   .diary-comment {
1438     border-top: 1px dashed $grey;
1439     padding-top: $lineheight/2;
1440     padding-bottom: $lineheight/2;
1441     &:first-child {
1442       margin-top: $lineheight/2;
1443       padding-top: $lineheight;
1444       border-top: 1px solid $grey;
1445     }
1446     &.deleted {
1447       background-color: #fee;
1448     }
1449     p {
1450       margin-bottom: $lineheight/2;
1451     }
1452     .comment-heading {
1453       margin-bottom: 0;
1454       margin-top: 0;
1455     }
1456   }
1457 }
1458
1459 .diary_entries-show img.user_thumbnail {
1460   float: left;
1461 }
1462
1463
1464 .diary-subscribe-buttons {
1465   position:relative;
1466   top: -30px;
1467   left: 130px;
1468 }
1469
1470 /* Rules for the log in page */
1471
1472 #login_auth_buttons {
1473   margin-bottom: 0;
1474 }
1475
1476 #login_auth_buttons li {
1477   float: left;
1478   padding: $lineheight/4 $lineheight/2;
1479 }
1480
1481 /* Rules for the account confirmation page */
1482
1483 .users-terms {
1484   .legale {
1485     border: 1px solid $grey;
1486     padding: $lineheight;
1487     margin-bottom: $lineheight;
1488     overflow: auto;
1489     height: 20em;
1490
1491     li {
1492       list-style: inherit;
1493     }
1494
1495     ol ol {
1496       list-style-type: lower-alpha;
1497     }
1498   }
1499
1500   #decline {
1501     background: $lightblue;
1502     &:hover {
1503       background: darken($lightblue, $hovercolor);
1504     }
1505   }
1506 }
1507
1508 /* Rules for the account settings page */
1509
1510 #accountForm .user_map {
1511   position: relative;
1512   width: 500px;
1513   height: 400px;
1514   border: 1px solid $grey;
1515 }
1516
1517 #accountForm .user_image {
1518   margin-bottom: 0;
1519 }
1520
1521 #accountForm #user_image {
1522   margin-left: 20px;
1523 }
1524
1525 #accountForm ul.accountImage-options {
1526   margin-left: 120px;
1527 }
1528
1529 .nohome .location {
1530   display: none;
1531 }
1532
1533 #homerow .message {
1534   display: none;
1535 }
1536
1537 .nohome .message {
1538   display: inline !important;
1539 }
1540
1541 /* Rules for the oauth settings page */
1542
1543 .oauth_clients .buttons .oauth-edit {
1544   border-radius: 2px 0 0 2px;
1545 }
1546
1547 .oauth_clients .buttons .oauth-delete {
1548   border-radius: 0 2px 2px 0;
1549 }
1550
1551 /* Rules for the oauth authorization page */
1552
1553 .oauth-authorize ul {
1554   list-style: none;
1555 }
1556
1557 /* Rules for messages pages */
1558
1559 .messages {
1560   input[type="submit"] {
1561     margin: auto;
1562   }
1563
1564   .inbox-row {
1565     background: $offwhite;
1566   }
1567
1568   .inbox-row-unread {
1569     background: #CBEEA7;
1570   }
1571
1572   .right {
1573     float: right;
1574   }
1575 }
1576
1577 .inbox-row .inbox-mark-read {
1578   display: none;
1579 }
1580
1581 .info-line {
1582   margin-bottom: $lineheight;
1583   padding: $lineheight/4 0px 4px 0px;
1584   border-bottom: 1px solid $grey;
1585
1586   form, form div {
1587     display: inline;
1588   }
1589 }
1590
1591 .info-line .user_thumbnail_tiny {
1592   vertical-align: middle;
1593 }
1594
1595 .inbox-sent {
1596   white-space: nowrap;
1597 }
1598
1599 .inbox-mark-unread,
1600 .inbox-mark-read,
1601 .inbox-delete {
1602   width: 1%;
1603 }
1604
1605 .inbox-row-unread .inbox-mark-unread {
1606   display: none;
1607 }
1608
1609 /* Rules for "flash" notice boxes shown at the top of the content area */
1610
1611 .flash {
1612   padding: $lineheight;
1613
1614   &.error {
1615     background-color: #ff7070;
1616   }
1617
1618   &.warning {
1619     background-color: #ffe0cc;
1620   }
1621
1622   &.notice {
1623     background-color: #CBEEA7;
1624   }
1625
1626   div.message {
1627     display: inline-block;
1628     margin-left: $lineheight / 2;
1629     vertical-align: middle;
1630
1631     p {
1632       margin-top: $lineheight * 0.5;
1633       margin-bottom: $lineheight * 0.5;
1634
1635       &:first-child {
1636         margin-top: 0px;
1637       }
1638
1639       &:last-child {
1640         margin-bottom: 0px;
1641       }
1642     }
1643   }
1644 }
1645
1646 /* Rules for highlighting fields with rails validation errors */
1647
1648 .formError {
1649   display: inline-block;
1650   padding: 5px 10px;
1651   margin-top: 5px;
1652   border-radius: 4px;
1653   font-size: 12px;
1654   color: #fff;
1655   background-color: #ff7070;
1656 }
1657
1658 /* Rules for rails validation error boxes */
1659
1660 #errorExplanation {
1661   width: 400px;
1662   border: 2px solid #ff7070;
1663   padding: 0 $lineheight/2;
1664   margin-bottom: $lineheight;
1665   background-color: #f0f0f0;
1666
1667   h2 {
1668     margin: 0 -10px 10px -10px;
1669     padding: $lineheight/4 $lineheight/4 $lineheight/4 15px;
1670     font-weight: bold;
1671     font-size: 12px;
1672     background-color: #c00;
1673     color: #fff;
1674     text-align: left;
1675   }
1676
1677   p {
1678     color: #333;
1679     margin-bottom: 0px;
1680     padding: $lineheight/4;
1681   }
1682 }
1683
1684 /* Rules for forms */
1685
1686 .standard-form {
1687   fieldset {
1688     margin-bottom: $lineheight;
1689   }
1690   label.standard-label {
1691     display: block;
1692     margin-bottom: $lineheight/4;
1693     font-size: $typeheight;
1694     font-weight: bold;
1695     line-height: 1.5;
1696   }
1697   label.standard-label.secondary {
1698     display: inline-block;
1699     font-weight: normal;
1700   }
1701   .form-help {
1702     font-weight: normal;
1703   }
1704   .form-column {
1705     float: left;
1706     margin-right: 20px;
1707   }
1708   .form-divider {
1709     margin-top: $lineheight;
1710     padding-top: $lineheight;
1711     border-top: 1px solid $lightgrey;
1712   }
1713   .horizontal-list .standard-form-row {
1714     float: left;
1715     padding-right: 10px;
1716   }
1717   .standard-form-row {
1718     margin-bottom: $lineheight/2;
1719   }
1720   .form-list {
1721     margin-bottom: 0;
1722   }
1723   .form-list li {
1724     margin-bottom: 5px;
1725     list-style-type: none;
1726   }
1727   input[type="checkbox"],
1728   input[type="radio"] {
1729     float: left;
1730     margin-top: 5px;
1731   }
1732 }
1733
1734 #remember_me_openid {
1735   display: block;
1736 }
1737
1738 select {
1739   padding: 2px;
1740 }
1741
1742 input[type="checkbox"],
1743 input[type="radio"] {
1744     margin-right: 5px;
1745 }
1746
1747 input[type="text"],
1748 input[type="email"],
1749 input[type="url"],
1750 input[type="password"],
1751 textarea {
1752   color: #222;
1753   background-color: #fff;
1754   border: 1px solid $grey;
1755   border-radius: 3px;
1756   padding: 2px 5px;
1757   margin: 0;
1758   width: 200px;
1759
1760   &.field_with_errors {
1761     border: 2px solid #ff7070;
1762   }
1763 }
1764
1765 textarea {
1766   padding: 5px;
1767   width: 100%;
1768   min-height: 50px;
1769   resize: vertical;
1770 }
1771
1772 /* Rules for user images */
1773
1774 img.user_image {
1775   max-width: 100px;
1776   max-height: 100px;
1777   border: 1px solid $grey;
1778   margin-bottom: $lineheight;
1779   float: left;
1780   margin-right: $lineheight;
1781 }
1782
1783 img.user_thumbnail {
1784   max-width: 50px;
1785   max-height: 50px;
1786   border: 1px solid $grey;
1787   margin-right: $lineheight;
1788 }
1789
1790 img.user_thumbnail_tiny {
1791   width: auto;
1792   height: auto;
1793   max-width: 25px;
1794   max-height: 25px;
1795   border: 1px solid $grey;
1796 }
1797
1798 /* Rules for geo microformats */
1799
1800 abbr.geo {
1801   border-bottom: none;
1802 }
1803
1804 /* General styles for action lists / subnavs / pager navs */
1805
1806 ul.secondary-actions {
1807   font-style: normal;
1808   margin-bottom: 0;
1809   margin-left: 0;
1810   padding: 0;
1811   &.pager {
1812     display: inline-block;
1813     margin-right: 60px;
1814   }
1815   > li {
1816     display: block;
1817     float: left;
1818     list-style: none;
1819     border-left: 1px solid $grey;
1820     padding-left: $lineheight/2;
1821     margin-right: $lineheight/2;
1822     &:first-child {
1823       border-left: 0;
1824       padding-left: 0;
1825     }
1826     &:last-child {
1827       margin-right: 0px;
1828     }
1829   }
1830 }
1831
1832 div.secondary-actions {
1833   padding: 10px;
1834   text-align: center;
1835 }
1836
1837 /* Utility for managing inner content areas */
1838
1839 .inner22 { padding: $lineheight;}
1840
1841 .inner12 { padding: $lineheight/2 $lineheight;}
1842
1843 .inner11 { padding: $lineheight/2;}
1844
1845 .inner20 { padding: $lineheight 0;}
1846
1847 .inner02 { padding: 0 $lineheight;}
1848
1849 /* Utility for general button styles */
1850
1851 input[type="button"],
1852 input[type="submit"],
1853 input[type="reset"],
1854 a.button {
1855   cursor: pointer;
1856   border: 0;
1857   display: inline-block;
1858   padding: $lineheight/4 $lineheight/2;
1859   min-height: 20px + $lineheight/2;
1860   min-width: 120px;
1861   margin: 0 0 $lineheight/2 0;
1862   color: white;
1863   background: $blue;
1864   text-align: center;
1865   border-radius: 2px;
1866   &:hover {
1867     background: darken($blue, $hovercolor);
1868     text-decoration: none;
1869   }
1870   &.deemphasize {
1871     background: $lightblue;
1872     &:hover {
1873       background: darken($lightblue, $hovercolor);
1874     }
1875   }
1876   &:disabled {
1877     background: $lightgrey;
1878     &:hover {
1879       background: $lightgrey;
1880     }
1881   }
1882   &:last-child {
1883     margin-bottom: 0;
1884   }
1885 }
1886
1887 input[type="button"],
1888 input[type="submit"],
1889 input[type="reset"] {
1890   line-height: normal;
1891 }
1892
1893 a.button {
1894   line-height: 20px;
1895 }
1896
1897 .buttons {
1898   min-width: 200px;
1899   input[type="submit"],
1900   input[type="button"],
1901   input[type="reset"],
1902   .button,
1903   .button_to {
1904     box-sizing: border-box;
1905     float: left;
1906     border-radius: 0;
1907     margin:0;
1908     min-width: 75px;
1909     max-width: 180px;
1910     border-right:1px solid white;
1911     text-overflow: ellipsis;
1912     white-space: nowrap;
1913     overflow: hidden;
1914   }
1915   input:first-child,
1916   .button:first-child,
1917   .button_to:first-child {
1918     border-radius:2px 0 0 2px;
1919   }
1920   input:last-child,
1921   .button:last-child,
1922   .button_to:last-child {
1923     border-radius:0 2px 2px 0;
1924     border-right-width: 0;
1925   }
1926   input:only-child,
1927   .button:only-child,
1928   .button_to:only-child,
1929   *[value="Hide"] + input:last-child,
1930   *[value="Hide"] + .button:last-child,
1931   *[value="Hide"] + .button_to:last-child {
1932     border-radius:2px;
1933     border-right-width: 0;
1934   }
1935     /* if a 3-button set has a hidden middle button */
1936   *[value="Hide"] + input:nth-child(3),
1937   *[value="Hide"] + .button:nth-child(3),
1938   *[value="Hide"] + .button_to:nth-child(3) {
1939     border-radius:0 2px 2px 0;
1940     border-right-width: 0;
1941   }
1942   /* if a 3-button set starts with a hidden button */
1943   *[value="Hide"] + input:nth-child(2):not(:last-child),
1944   *[value="Hide"] + .button:nth-child(2):not(:last-child),
1945   *[value="Hide"] + .button_to:nth-child(2):not(:last-child) {
1946     border-radius:2px 0 0 2px;
1947     border-right-width: 1px;
1948   }
1949 }
1950
1951 /* Customise the background colour of striped tables */
1952
1953 .table-striped > tbody > tr:nth-child(2n+1) > td,
1954 .table-striped > tbody > tr:nth-child(2n+1) > th {
1955    background-color: $offwhite;
1956 }
1957
1958 /* Rules for OpenID logo */
1959
1960 .openid_logo {
1961   vertical-align: text-bottom;
1962   border: 0;
1963 }
1964
1965 /* Rules for rich text */
1966
1967 .richtext,
1968 .prose {
1969   code {
1970     font-size: 13px;
1971     background: $lightgrey;
1972     padding: 2px 3px;
1973   }
1974
1975   pre {
1976     font-size: 13px;
1977     background: $lightgrey;
1978     padding: 2px 3px;
1979     white-space: pre-wrap;
1980
1981     code {
1982       padding: 0;
1983     }
1984   }
1985
1986   img {
1987     padding: $lineheight;
1988     background-color: $offwhite;
1989     display: block;
1990     max-width: 100%;
1991     margin: auto;
1992   }
1993
1994   blockquote {
1995     border-left: $lineheight solid $offwhite;
1996     padding-left: $lineheight;
1997     margin: 0;
1998     color: $darkgrey;
1999   }
2000 }
2001
2002 .diary_post .richtext {
2003     margin-top: $lineheight;
2004   }
2005
2006 .comments .richtext {
2007   margin-left: 70px;
2008   margin-top: 0;
2009 }
2010
2011 /* Rules for rich text editors */
2012
2013 input.richtext_title[type="text"] {
2014   width: 50%;
2015   width: calc(100% - 235px);
2016
2017   @media only screen and (max-width:768px) {
2018     width: 100%;
2019   }
2020 }
2021
2022 .richtext_container {
2023   margin-bottom: $lineheight;
2024
2025   .richtext_content {
2026     width: 50%;
2027     width: calc(100% - 235px);
2028     display: inline-block;
2029     vertical-align: top;
2030
2031     @media only screen and (max-width:768px) {
2032       width: 100%;
2033     }
2034
2035     .richtext_preview {
2036       display: inline-block;
2037       padding: $lineheight;
2038       background-color: $offwhite;
2039       overflow-x: auto;
2040
2041       &.loading {
2042         background-image: image-url("loading.gif");
2043         background-repeat: no-repeat;
2044         background-position: center;
2045       }
2046
2047       > :first-child {
2048         margin-top: 0px;
2049       }
2050     }
2051   }
2052
2053   .richtext_help {
2054     display: inline-block;
2055     vertical-align: top;
2056     margin-left: 15px;
2057     background-color: $offwhite;
2058     padding: $lineheight/2;
2059     width: 220px;
2060
2061     ul {
2062       margin-bottom: 0;
2063     }
2064
2065     h4.heading, li {
2066       border-bottom: 1px solid $grey;
2067       margin-bottom: $lineheight/4;
2068       padding-bottom: $lineheight/4;
2069     }
2070
2071     li h4, li span, li p {
2072       display: inline-block;
2073       vertical-align: top;
2074       font-size: 11px;
2075     }
2076
2077     li h4 {
2078       width: 40%;
2079       margin: 0;
2080     }
2081
2082     li span, li p {
2083       width: 50%;
2084       margin-left: $lineheight/2;
2085       margin-bottom: $lineheight/4;
2086       white-space: nowrap;
2087     }
2088   }
2089 }
2090
2091 /* Rules for the user notes list */
2092
2093 .note_list {
2094   tr.creator {
2095     background-color: $offwhite;
2096   }
2097 }
2098
2099 /* Rules for the iD editor */
2100
2101 .id-embed {
2102   width: 100%;
2103   height: 100%;
2104 }
2105
2106 /* Rules for the "Welcome" page */
2107 .site-welcome, .site-fixthemap {
2108   .center {
2109     text-align: center;
2110     .sprite {
2111       float: none;
2112       margin: auto;
2113     }
2114   }
2115
2116   .sprite {
2117     background-image: image-url("welcome-sprite.png");
2118     background-size: 500px 250px;
2119     display: block;
2120     float: left;
2121   }
2122
2123   .icon-list {
2124     padding-bottom: 20px;
2125     div {
2126       margin-bottom: 10px;
2127       p {
2128         padding-top: 10px;
2129       }
2130     }
2131   }
2132   .sprite.small {
2133     width: 50px;
2134     height: 50px;
2135   }
2136
2137   .sprite.x {
2138     /* no-r2 */ background-position: -50px 0;
2139   }
2140
2141   .sprite.term {
2142     margin-right: 10px;
2143     vertical-align: middle;
2144   }
2145
2146   .sprite.node {
2147     /* no-r2 */ background-position: -100px 0;
2148   }
2149
2150   .sprite.way {
2151     /* no-r2 */ background-position: -150px 0;
2152   }
2153
2154   .sprite.tag {
2155     /* no-r2 */ background-position: -200px 0;
2156   }
2157
2158   .sprite.editor {
2159     /* no-r2 */ background-position: -250px 0;
2160   }
2161
2162   .sprite.question {
2163     /* no-r2 */ background-position: -300px 0;
2164   }
2165
2166   .sprite.rules {
2167     /* no-r2 */ background-position: -350px 0;
2168   }
2169
2170   .start-mapping {
2171     margin: auto;
2172     cursor: pointer;
2173     border: none;
2174     padding: 20px 40px;
2175     font-size: 30px;
2176     text-decoration: none;
2177   }
2178
2179   .icon.note {
2180     background-color: #333;
2181     border-radius: 4px;
2182   }
2183 }
2184
2185 .site-about #content {
2186   background-color: $lightgrey;
2187   background-position: 50% 50%;
2188   background-repeat: no-repeat;
2189   background-size: cover;
2190   background-attachment: fixed;
2191
2192
2193   .content-inner {
2194     position: relative;
2195     color: #333;
2196     min-width: 320px;
2197     max-width: 640px;
2198   }
2199
2200   .text {
2201     background: white;
2202     padding: 40px;
2203   }
2204
2205   .attr {
2206     position: relative;
2207     padding: 170px 40px 20px;
2208     background: #333;
2209     background: rgba(0, 0, 0, .8);
2210     margin-bottom: 0;
2211     margin-top: -20px;
2212
2213     h1 {
2214       display: block;
2215       color: white;
2216       font-weight: 300;
2217       font-size: 34px;
2218       span {
2219         color: $vibrant-green;
2220       }
2221     }
2222
2223     .user-image {
2224       position: absolute;
2225       top: 0px;
2226       right: 240px;
2227       left: 0px;
2228       height: 150px;
2229       background-position: 0 50%;
2230       background-repeat: no-repeat;
2231       background-image: image-url('about/osm.png');
2232       background-size: cover;
2233       background-color: $vibrant-green;
2234     }
2235
2236     .byosm {
2237       position: absolute;
2238       top: 0px;
2239       right: 0px;
2240       z-index: 1;
2241       width: 240px;
2242       height: 150px;
2243       padding: 20px 20px 20px 40px;
2244       font: 500 20px/24px Helvetica, Arial, sans-serif;
2245       white-space: nowrap;
2246       color: #fff;
2247       background: $vibrant-green;
2248     }
2249
2250     .byosm span {
2251       display: inline-block;
2252       width: 20px;
2253       margin-left: -20px;
2254     }
2255   }
2256
2257   .icon {
2258     width: 30px;
2259     height: 30px;
2260     margin-right: 10px;
2261     vertical-align: middle;
2262     background: 40px 40px image-url('about/sprite.png') no-repeat;
2263
2264     &.local {
2265       /* no-r2 */
2266       background-position: 0px 0px;
2267     }
2268     &.community {
2269       /* no-r2 */
2270       background-position: 0px -40px;
2271     }
2272     &.open {
2273       /* no-r2 */
2274       background-position: 0px -80px;
2275     }
2276     &.partners {
2277       /* no-r2 */
2278       background-position: 0px -120px;
2279     }
2280     &.infringement {
2281       /* no-r2 */
2282       background-position: 0px -160px;
2283     }
2284     &.legal {
2285       /* no-r2 */
2286       background-position: -45px -160px;
2287     }
2288   }
2289 }
2290
2291 @import 'browse';
2292
2293 @media only screen and (max-width:960px) {
2294   .header-illustration.new-user-arm {
2295     display: none;
2296   }
2297 }
2298
2299 .read-reports {
2300   background: $lightgrey;
2301   opacity: 0.7;
2302 }