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