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