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