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