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