]> 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     &:first-child { border-top: $keyline; }
981   }
982
983   .search_details {
984     display: block;
985     float: right;
986     text-align: right;
987     margin-top: 0.2em;
988     margin-left: 0.5em;
989   }
990 }
991
992 .search_results_error {
993   color: #f00;
994 }
995
996 /* Rules for entity history */
997
998 #sidebar_content {
999   .browse_details {
1000     position: relative;
1001     border-bottom: $keyline;
1002   }
1003 }
1004
1005 .browse_status {
1006   display: none;
1007 }
1008
1009 /* Rules for the history sidebar */
1010
1011 #sidebar .changesets {
1012   li {
1013     padding: 15px 20px;
1014     border-bottom: 1px solid #ddd;
1015     cursor: pointer;
1016
1017     &.selected { background: #FFFFE6; }
1018     /* color is derived from changeset bbox fillColor in history.js */
1019   }
1020
1021   h4 {
1022     margin: 0;
1023     a {
1024       color: #000;
1025     }
1026   }
1027 }
1028
1029 /* Rules for the browse sidebar */
1030
1031 #sidebar_content {
1032   .browse-section {
1033     padding: $lineheight/2 $lineheight;
1034     border-bottom: 1px solid #ddd;
1035
1036     h4:first-child {
1037       margin-top: 0;
1038       word-wrap: break-word;
1039     }
1040   }
1041
1042   .browse-section:last-of-type {
1043     border-bottom: none;
1044   }
1045
1046   .paginate {
1047     float: right;
1048     padding: 1px 6px;
1049     border: 1px solid #eee;
1050     border-radius: 3px;
1051   }
1052
1053   .paginate ul {
1054     padding-left: 20px;
1055   }
1056
1057   .browse-field {
1058     margin-bottom: 10px;
1059
1060     h4 {
1061       padding: 5px 0 5px 10px;
1062       font-size: 12px;
1063       border: 1px solid #CCC;
1064       border-radius: 4px 4px 0 0;
1065       background-color: #F6F6F6;
1066     }
1067
1068     p {
1069       padding: 7px 10px;
1070       font-size: 12px;
1071       background-color: #FFF;
1072       border: 1px solid #CCC;
1073       border-top: 0;
1074       border-radius: 0 0 4px 4px;
1075     }
1076   }
1077
1078   .browse-tag-list {
1079     background-color: #F6F6F6;
1080     border: 1px solid #ddd;
1081     border-radius: 3px;
1082     font-size: 12px;
1083     table-layout: fixed;
1084     border-collapse: separate;
1085
1086     th, td {
1087       border-bottom: 1px solid #ddd;
1088     }
1089
1090     tr:last-child th, tr:last-child td {
1091       border-bottom: 0;
1092     }
1093
1094     .browse-tag-k,
1095     .browse-tag-v {
1096       width: 50%;
1097       padding: 6px 10px;
1098       word-wrap: break-word;
1099     }
1100
1101     .browse-tag-k {
1102       font-weight: 500;
1103       background-color: #F6F6F6;
1104     }
1105
1106     .browse-tag-v {
1107       border-left: 1px solid #ddd;
1108       background-color: #fff;
1109     }
1110   }
1111
1112   .warning {
1113     margin: $lineheight/2 0;
1114     padding: $lineheight/2;
1115     font-size: 90%;
1116   }
1117
1118   .note-comments li {
1119     margin: $lineheight/2 0;
1120
1121     p {
1122       margin-left: 10px;
1123     }
1124   }
1125
1126   .note-description {
1127     overflow: hidden;
1128     margin: 0 0 10px 10px;
1129   }
1130
1131   .query-intro p {
1132     padding: $lineheight $lineheight $lineheight/2;
1133   }
1134
1135   .query-results {
1136     display: none;
1137
1138     h3 {
1139       padding: $lineheight $lineheight $lineheight/2;
1140       margin: 0;
1141     }
1142
1143     ul {
1144       li {
1145         padding: 15px 20px;
1146         border-bottom: 1px solid #ddd;
1147
1148         &.query-result {
1149           cursor: pointer;
1150         }
1151
1152         &.selected {
1153           background: #FFFFE6;
1154         }
1155
1156         a {
1157           color: #000;
1158         }
1159       }
1160     }
1161   }
1162 }
1163
1164 /* Rules for export sidebar */
1165
1166 .export_form {
1167   padding: $lineheight;
1168
1169   .export_area_inputs,
1170   .export_button {
1171     text-align: center;
1172   }
1173
1174   .export_area_inputs {
1175     margin-bottom: $lineheight/2;
1176     input[type="text"] {
1177       width: 80px;
1178       text-align: center;
1179       margin-bottom: 5px;
1180     }
1181   }
1182
1183   .export_boxy {
1184     background: #eee;
1185     border: 1px solid #ccc;
1186     border-radius: 3px;
1187
1188     #maxlat { margin-top: -1px; }
1189     #minlon {
1190       float: left;
1191       margin-left: -1px;
1192     }
1193     #maxlon {
1194       float: right;
1195       margin-right: -1px;
1196     }
1197     #minlat { margin-bottom: 0; }
1198   }
1199
1200   .export_bound {
1201     margin: $lineheight/4;
1202   }
1203
1204   .export_button {
1205     margin-top: $lineheight;
1206     margin-bottom: $lineheight;
1207   }
1208
1209   dl {
1210     padding-left: $lineheight/2;
1211     dd {
1212       margin-left: 0;
1213       margin-bottom: 10px;
1214     }
1215   }
1216 }
1217
1218 /* Rules for edit pages */
1219
1220 .site-edit {
1221   #content {
1222     position: absolute;
1223     top: $headerHeight;
1224     bottom: 0;
1225     width: 100%;
1226   }
1227
1228   #map {
1229     height: 100%;
1230     overflow: hidden;
1231   }
1232 }
1233
1234 /* Rules for non-map content pages */
1235
1236 .content-heading {
1237   background: $lightgrey;
1238   
1239   h1 { font-size: 22px; }
1240 }
1241
1242 .content-body {
1243   h1, h2, h3, p, ul, ol {
1244     margin-bottom: $lineheight;
1245   }
1246
1247   h1, h2, h3 {
1248     margin-top: $lineheight/2;
1249   }
1250 }
1251
1252 .content-inner {
1253   position: relative;
1254   max-width: 900px;
1255   margin: auto;
1256   padding: $lineheight;
1257 }
1258
1259 /* Overrides for pages that use new layout conventions */
1260
1261 .user-new,
1262 .user-create,
1263 .user-terms {
1264   .content-body .content-inner {
1265     padding: 0;
1266   }
1267 }
1268
1269 .user-new,
1270 .user-create,
1271 .user-terms,
1272 .user-confirm {
1273   .content-heading .content-inner {
1274     height: 200px;
1275   }
1276 }
1277
1278 .header-illustration {
1279   background-position: 0 0;
1280   background-repeat: no-repeat;
1281   position: absolute;
1282   height: 200px;
1283   width: 100%;
1284   left: 0;
1285   bottom: 0;
1286
1287   &.new-user-main {
1288     background-image: image-url("sign-up-illustration.png");
1289   }
1290
1291   &.confirm-main {
1292     background-image: image-url("confirm-illustration.png");
1293   }
1294
1295   &.new-user-terms {
1296     background-image: image-url("terms-illustration.png");
1297   }
1298
1299   &.new-user-arm {
1300     height: 110px;
1301     width: 130px;
1302     left: 260px;
1303     top: 160px;
1304     background-image: image-url("sign-up-illustration-arm.png");
1305     z-index: 100;
1306   }
1307 }
1308
1309 #content.maximised {
1310   top: 0;
1311   left: 0;
1312   right: 0;
1313   bottom: 0;
1314   border: 0;
1315   z-index: 2000;
1316 }
1317
1318 /* Rules for small maps in content areas */
1319
1320 .content_map {
1321   position: relative;
1322   width: 45%;
1323   height: 400px;
1324   border: 1px solid #ccc;
1325   margin-bottom: $lineheight;
1326   float: right;
1327 }
1328
1329 /* Rules for the trace list shown by the traces tab etc */
1330
1331 #trace_list {
1332   font-size: $lineheight/2;
1333   border-width: 0px;
1334   text-align: right;
1335
1336   .trace_summary {
1337     font-size: 12px;
1338     color: gray;
1339   }
1340
1341   .trace_pending {
1342     color: red;
1343   }
1344
1345   .trace_public {
1346     color: green;
1347   }
1348
1349   .trace_identifiable {
1350     color: green;
1351   }
1352
1353   .trace_trackable {
1354     color: red;
1355   }
1356
1357   .trace_private {
1358     color: red;
1359   }
1360 }
1361
1362 /* Rules for the user profile page */
1363
1364 #userinformation {
1365
1366   min-height: 100px;
1367   .userinformation-inner {
1368     float: left;
1369   }
1370   h2 {
1371     margin-top: 0;
1372   }
1373   .user-description {
1374     width: 100%;
1375     clear: both;
1376   }
1377   .deemphasize {
1378     margin: 0;
1379   }
1380 }
1381
1382 .admin-user-info small {
1383   margin-bottom: $lineheight/2;
1384   display: inline;
1385   margin-right: $lineheight;
1386 }
1387
1388 .activity-block {
1389   clear: left;
1390   border-bottom: 1px solid #ccc;
1391   padding-bottom: $lineheight;
1392   float: left;
1393   h3 {
1394     margin-bottom: $lineheight/2;
1395   }
1396 }
1397
1398 .contact-activity {
1399   margin-top: $lineheight;
1400   width: 100%;
1401 }
1402
1403 .activity-details p {
1404   margin-left: 70px;
1405   margin-bottom: 0;
1406 }
1407
1408 #friends-container .contact-activity ul {
1409   margin-left: 70px;
1410 }
1411
1412 .user-view {
1413   // Silly exception; remove when user page is redesigned.
1414   .content-inner {
1415     max-width: none;
1416   }
1417   p#no_home_location {
1418     margin: $lineheight;
1419   }
1420   .user_thumbnail {
1421     margin-top: $lineheight/4;
1422     float: left;
1423   }
1424 }
1425
1426 /* Rules for the user map */
1427
1428 .content_map .leaflet-popup-content {
1429   margin: $lineheight/2;
1430   min-height: 50px;
1431 }
1432
1433 /* Rules for user popups on maps */
1434
1435 .user_popup {
1436   min-width: 200px;
1437   p {
1438     padding: 0 0 5px 0;
1439     margin-top: 0 0 0 60px;
1440     font-size: 12px;
1441   }
1442   img.user_thumbnail {
1443     float: left;
1444     margin: 0 $lineheight/2 0 0;
1445   }
1446 }
1447
1448 /* Rules for the user list */
1449
1450 #user_list {
1451   font-size: $lineheight/2;
1452   width: 100%;
1453
1454   tr {
1455     vertical-align: middle;
1456   }
1457
1458   p {
1459     margin-top: 0px;
1460     margin-bottom: 0px;
1461   }
1462 }
1463
1464 #user_list_actions {
1465   float: right;
1466   margin-top: $lineheight/2;
1467 }
1468
1469 /* Rules for the diary list page */
1470
1471 .diary_post {
1472   position: relative;
1473   margin-top: $lineheight/2;
1474   padding-top: $lineheight;
1475   border-top: 1px solid #ccc;
1476
1477   .post_heading {
1478     margin-bottom: $lineheight;
1479
1480     h2 {
1481       margin-top: 0;
1482       margin-bottom: $lineheight/2;
1483       font-size: 24px;
1484     }
1485   }
1486
1487   img.user_thumbnail {
1488     float: left;
1489   }
1490
1491   small.deemphasize {
1492     float: left;
1493     display: block;
1494   }
1495
1496   ul.secondary-actions {
1497     display: inline-block;
1498   }
1499 }
1500
1501 .content-heading .hide_unless_logged_in { // hacky selector, better to just add a new class to this div
1502   display: inline;
1503 }
1504
1505 /* Rules for the diary entry page */
1506
1507 .diary_entry {
1508   #map {
1509     position: relative;
1510     width: 90%;
1511     height: 400px;
1512     border: 1px solid #ccc;
1513     display: none;
1514     margin-bottom: $lineheight;
1515   }
1516   #newcomment {
1517     border-top: 1px solid #ccc;
1518     padding-top: $lineheight;
1519     margin-top: $lineheight/2;
1520   }
1521   .comments {
1522     max-width: 740px;
1523   }
1524   .diary-comment {
1525     margin-top: $lineheight/2;
1526     border-top: 1px dashed #ccc;
1527     padding-top: $lineheight/2;
1528     &:first-child {
1529       margin-top: $lineheight;
1530       padding-top: $lineheight;
1531       border-top: 1px solid #ccc;
1532     }
1533     p {
1534       margin-bottom: $lineheight/2;
1535     }
1536     .comment-heading {
1537       margin-bottom: 0;
1538       margin-top: 0;
1539     }
1540   }
1541 }
1542
1543 .diary_entry-view img.user_thumbnail {
1544   float: left;
1545 }
1546
1547 /* Rules for the log in page */
1548
1549 #login_openid_buttons {
1550   margin-bottom: 0;
1551 }
1552
1553 #login_openid_buttons li {
1554   float: left;
1555   padding: $lineheight/4 $lineheight/2;
1556 }
1557
1558 /* Rules for the account confirmation page */
1559
1560 .user-terms {
1561   .legale {
1562     border: 1px solid #ccc;
1563     padding: $lineheight;
1564     margin-bottom: $lineheight;
1565     overflow: auto;
1566     height: 20em;
1567   }
1568
1569   #decline {
1570     background: $lightblue;
1571     &:hover {
1572       background: darken($lightblue, $hovercolor);
1573     }
1574   }
1575 }
1576
1577 /* Rules for the account settings page */
1578
1579 #accountForm .user_map {
1580   position: relative;
1581   width: 500px;
1582   height: 400px;
1583   border: 1px solid #ccc;
1584 }
1585
1586 #accountForm .user_image {
1587   margin-bottom: 0;
1588 }
1589
1590 #accountForm #user_image {
1591   margin-left: 20px;
1592 }
1593
1594 #accountForm ul.accountImage-options {
1595   margin-left: 120px;
1596 }
1597
1598 .nohome .location {
1599   display: none;
1600 }
1601
1602 #homerow .message {
1603   display: none;
1604 }
1605
1606 .nohome .message {
1607   display: inline !important;
1608 }
1609
1610 .content_map.settings_map {
1611   width: 50%;
1612   float: none;
1613 }
1614
1615 /* Rules for the oauth settings page */
1616
1617 .oauth_clients .buttons .oauth-edit {
1618   border-radius: 2px 0 0 2px;
1619 }
1620
1621 .oauth_clients .buttons .oauth-delete {
1622   border-radius: 0 2px 2px 0;
1623 }
1624
1625 /* Rules for messages pages */
1626
1627 .messages {
1628   width: 100%;
1629   border: 1px solid #ddd;
1630
1631   input[type="submit"] {
1632     margin: auto;
1633   }
1634   tbody tr {
1635     border-top: 1px solid #ccc;
1636   }
1637
1638   .inbox-row {
1639     background: #f8f8ff;
1640   }
1641
1642   .inbox-row-unread {
1643     background:#CBEEA7;
1644   }
1645
1646   .right {
1647     float: right;
1648   }
1649
1650   tr td,
1651   tr th {
1652     padding: $lineheight/4;
1653   }
1654   p:last-child,
1655   h2:last-child,
1656   h3:last-child,
1657   ol:last-child,
1658   ul:last-child {
1659     margin-bottom:0;
1660   }
1661   tr td {
1662     height: 30px;
1663     border-right: 1px solid $lightgrey;
1664   }
1665 }
1666
1667 .inbox-row .inbox-mark-read {
1668   display: none;
1669 }
1670
1671 .info-line {
1672   margin-bottom: $lineheight;
1673   padding: $lineheight/4 0px 4px 0px;
1674   border-bottom: 1px solid #ccc;
1675
1676   form, form div {
1677     display: inline;
1678   }
1679 }
1680
1681 .info-line .user_thumbnail_tiny {
1682   vertical-align: middle;
1683 }
1684
1685 .inbox-sent {
1686   white-space: nowrap;
1687 }
1688
1689 .inbox-mark-unread,
1690 .inbox-mark-read,
1691 .inbox-delete {
1692   width: 1%;
1693 }
1694
1695 .inbox-row-unread .inbox-mark-unread {
1696   display: none;
1697 }
1698
1699 .message-read .message-buttons {
1700   margin-top: $lineheight;
1701   margin-bottom: $lineheight * 1.5;
1702   padding-top: $lineheight;
1703   border-top: 1px solid $lightgrey;
1704 }
1705
1706 .message-read .buttons .mark-unread-button {
1707   border-radius: 0;
1708 }
1709
1710 /* Rules for "flash" notice boxes shown at the top of the content area */
1711
1712 .error {
1713   padding: $lineheight;
1714   background-color: #ff7070;
1715 }
1716
1717 .warning {
1718   padding: $lineheight;
1719   background-color: #ffe0cc;
1720 }
1721
1722 .notice {
1723   padding: $lineheight;
1724   background-color: #CBEEA7;
1725 }
1726
1727 /* Rules for highlighting fields with rails validation errors */
1728
1729 .formError {
1730   display: inline-block;
1731   padding: 5px 10px;
1732   margin-top: 5px;
1733   border-radius: 4px;
1734   font-size: 12px;
1735   color: #fff;
1736   background-color: #ff7070;
1737 }
1738
1739 /* Rules for rails validation error boxes */
1740
1741 #errorExplanation {
1742   width: 400px;
1743   border: 2px solid #ff7070;
1744   padding: 0 $lineheight/2;
1745   margin-bottom: $lineheight;
1746   background-color: #f0f0f0;
1747
1748   h2 {
1749     margin: 0 -10px 10px -10px;
1750     padding: $lineheight/4 $lineheight/4 $lineheight/4 15px;
1751     font-weight: bold;
1752     font-size: 12px;
1753     background-color: #c00;
1754     color: #fff;
1755     text-align: left;
1756   }
1757
1758   p {
1759     color: #333;
1760     margin-bottom: 0px;
1761     padding: $lineheight/4;
1762   }
1763
1764   ul {
1765     padding-left: $lineheight;
1766
1767     li {
1768       font-size: 12px;
1769       list-style: disc;
1770     }
1771   }
1772 }
1773
1774 /* Rules for forms */
1775
1776 .standard-form {
1777   fieldset {
1778     margin-bottom: $lineheight;
1779   }
1780   label.standard-label {
1781     display: block;
1782     margin-bottom: $lineheight/4;
1783     font-size: $typeheight;
1784     font-weight: bold;
1785     line-height: 1.5;
1786   }
1787   label.standard-label.secondary {
1788     display: inline-block;
1789     font-weight: normal;
1790   }
1791   .form-help {
1792     font-weight: normal;
1793   }
1794   .form-column {
1795     float: left;
1796     margin-right: 20px;
1797   }
1798   .form-divider {
1799     margin-top: $lineheight;
1800     padding-top: $lineheight;
1801     border-top: 1px solid $lightgrey;
1802   }
1803   .horizontal-list .form-row { 
1804     float: left;
1805     padding-right: 10px;
1806   }
1807   .form-row {
1808     margin-bottom: $lineheight/2;
1809   }
1810   .form-list {
1811     margin-bottom: 0;
1812   }
1813   .form-list li {
1814     margin-bottom: 5px;
1815    }
1816   input[type="checkbox"],
1817   input[type="radio"] {
1818     float: left;
1819     margin-top: 5px;
1820   }
1821 }
1822
1823 #remember_me_openid {
1824   display: block;
1825 }
1826
1827 input[type="checkbox"],
1828 input[type="radio"] {
1829     margin-right: 5px;
1830 }
1831
1832 input[type="text"],
1833 input[type="email"],
1834 input[type="url"],
1835 input[type="password"],
1836 textarea {
1837   border: 1px solid #ccc;
1838   padding: 2px 5px;
1839   margin: 0;
1840   width: 200px;
1841
1842   &.field_with_errors {
1843     border: 2px solid #ff7070;
1844   }
1845 }
1846
1847 textarea {
1848   padding: 5px;
1849   width: 100%;
1850 }
1851
1852 /* Rules for user images */
1853
1854 img.user_image {
1855   max-width: 100px;
1856   max-height: 100px;
1857   border: 1px solid #ccc;
1858   margin-bottom: $lineheight;
1859   float: left;
1860   margin-right: $lineheight;
1861 }
1862
1863 img.user_thumbnail {
1864   max-width: 50px;
1865   max-height: 50px;
1866   border: 1px solid #ccc;
1867   margin-right: $lineheight;
1868 }
1869
1870 img.user_thumbnail_tiny {
1871   width: auto;
1872   height: auto;
1873   max-width: 25px;
1874   max-height: 25px;
1875   border: 1px solid #ccc;
1876 }
1877
1878 /* Rules for geo microformats */
1879
1880 abbr.geo {
1881   border-bottom: none;
1882 }
1883
1884 /* Rules for RSS buttons */
1885
1886 .rsssmall {
1887   position: relative;
1888   top: 3px;
1889 }
1890
1891 /* General styles for action lists / subnavs / pager navs */
1892
1893 ul.secondary-actions {
1894   font-style: normal;
1895   margin-bottom: 0;
1896   margin-left: 0;
1897   &.pager {
1898     display: inline-block;
1899     margin-right: 60px;
1900   }
1901   > li {
1902     display: block;
1903     float: left;
1904     list-style: none;
1905     border-left: 1px solid #ccc;
1906     padding-left: $lineheight/2;
1907     margin-right: $lineheight/2;
1908     &:first-child {
1909       border-left: 0;
1910       padding-left: 0;
1911     }
1912     &:last-child {
1913       margin-right: 0px;
1914     }
1915   }
1916 }
1917
1918 div.secondary-actions {
1919   padding: 10px;
1920   text-align: center;
1921 }
1922
1923 /* Utility for managing inner content areas */
1924
1925 .inner22 { padding: $lineheight;}
1926
1927 .inner12 { padding: $lineheight/2 $lineheight;}
1928
1929 .inner11 { padding: $lineheight/2;}
1930
1931 .inner20 { padding: $lineheight 0;}
1932
1933 .inner02 { padding: 0 $lineheight;}
1934
1935 /* Utility for general button styles */
1936
1937 input[type="button"],
1938 input[type="submit"],
1939 input[type="reset"],
1940 a.button {
1941   cursor: pointer;
1942   border: 0;
1943   display: inline-block;
1944   line-height: 20px;
1945   padding: $lineheight/4 $lineheight/2;
1946   min-height: 20px + $lineheight/2;
1947   min-width: 120px;
1948   margin: 0 0 $lineheight/2 0;
1949   color: white;
1950   background: $blue;
1951   text-align: center;
1952   border-radius: 2px;
1953   -moz-border-radius: 2px;
1954   &:hover {
1955     background: darken($blue, $hovercolor);
1956     text-decoration: none;
1957   }
1958   &.deemphasize {
1959     background: $lightblue;
1960     &:hover {
1961       background: darken($lightblue, $hovercolor);
1962     }
1963   }
1964   &:disabled {
1965     background: $lightgrey;
1966     &:hover {
1967       background: $lightgrey;
1968     }
1969   }
1970   &:last-child {
1971     margin-bottom: 0;
1972   }
1973 }
1974
1975 .buttons {
1976   min-width: 200px;
1977   input[type="submit"],
1978   input[type="button"],
1979   input[type="reset"],
1980   .button {
1981     box-sizing: border-box;
1982     float: left;
1983     border-radius: 0;
1984     margin:0;
1985     min-width: 75px;
1986     max-width: 180px;
1987     border-right:1px solid white;
1988     text-overflow: ellipsis;
1989     white-space: nowrap;
1990     overflow: hidden;
1991   }
1992   input:first-child,
1993   .button:first-child {
1994     border-radius:2px 0 0 2px;
1995   }
1996   input:last-child,
1997   .button:last-child {
1998     border-radius:0 2px 2px 0;
1999     border-right-width: 0;
2000   }
2001   input:only-child,
2002   .button:only-child,
2003   *[value="Hide"] + input:last-child,
2004   *[value="Hide"] + .button:last-child {
2005     border-radius:2px;
2006     border-right-width: 0;
2007   }
2008     /* if a 3-button set has a hidden middle button */
2009   *[value="Hide"] + input:nth-child(3),
2010   *[value="Hide"] + .button:nth-child(3) {
2011     border-radius:0 2px 2px 0;
2012     border-right-width: 0;
2013   }
2014   /* if a 3-button set starts with a hidden button */
2015   *[value="Hide"] + input:nth-child(2):not(:last-child),
2016   *[value="Hide"] + .button:nth-child(2):not(:last-child) {
2017     border-radius:2px 0 0 2px;
2018     border-right-width: 1px;
2019   }
2020 }
2021
2022 /* Rules for doing distinct colour of alternate table rows */
2023
2024 .table0,
2025 .item0 {
2026   background: $offwhite;
2027 }
2028
2029 .table1,
2030 .item1 {
2031   background: #fff;
2032 }
2033
2034 /* Rules for OpenID logo */
2035
2036 .openid_logo {
2037   vertical-align: text-bottom;
2038   border: 0;
2039 }
2040
2041 /* Rules for rich text */
2042
2043 .richtext,
2044 .prose {
2045   h1, h2 {
2046     padding-bottom: $lineheight/2;
2047     border-bottom: 1px dashed #cccccc;
2048     margin-bottom: $lineheight/2;
2049   }
2050
2051   h1 {
2052     font-size: 24px;
2053   }
2054
2055   h2 {
2056     font-size: 18px;
2057   }
2058
2059   h3 {
2060     font-size: $typeheight;
2061   }
2062
2063   code {
2064     font-size: 13px;
2065     background: #e8e8e8;
2066     padding: 2px 3px;
2067   }
2068
2069   pre {
2070     font-size: 13px;
2071     background: #e8e8e8;
2072     padding: 2px 3px;
2073
2074     code {
2075       padding: 0;
2076     }
2077   }
2078
2079   img {
2080     padding: $lineheight;
2081     background-color: $offwhite;
2082     display: block;
2083     max-width: 100%;
2084     margin: auto;
2085   }
2086
2087   blockquote {
2088     border-left: $lineheight solid $offwhite;
2089     padding-left: $lineheight;
2090     margin: 0;
2091     color: #7E7E7E;
2092   }
2093
2094   ul, ol {
2095     padding-left: $lineheight;
2096     margin-bottom: $lineheight;
2097     margin-left: $lineheight;
2098   }
2099
2100   ul li {
2101     list-style: disc;
2102   }
2103
2104   ol li {
2105     list-style: decimal;
2106   }
2107 }
2108
2109 .diary_post .richtext {
2110     margin-top: $lineheight;
2111   }
2112
2113 .comments .richtext {
2114   margin-left: 70px;
2115   margin-top: 0;
2116 }
2117
2118 /* Rules for rich text editors */
2119
2120 input.richtext_title[type="text"] {
2121   width: 50%;
2122   width: -moz-calc(100% - 235px);
2123   width: -webkit-calc(100% - 235px);
2124   width: calc(100% - 235px);
2125
2126   @media only screen and (max-width:768px) {
2127     width: 100%;
2128   }
2129 }
2130
2131 .richtext_container {
2132   margin-bottom: $lineheight;
2133
2134   .richtext_content {
2135     width: 50%;
2136     width: -moz-calc(100% - 235px);
2137     width: -webkit-calc(100% - 235px);
2138     width: calc(100% - 235px);
2139     display: inline-block;
2140     vertical-align: top;
2141
2142     @media only screen and (max-width:768px) {
2143       width: 100%;
2144     }
2145
2146     .richtext_preview {
2147       display: inline-block;
2148       padding: $lineheight;
2149       background-color: $offwhite;
2150       overflow-x: auto;
2151
2152       &.loading {
2153         background-image: image-url("loading.gif");
2154         background-repeat: no-repeat;
2155         background-position: center;
2156       }
2157
2158       > :first-child {
2159         margin-top: 0px;
2160       }
2161     }
2162   }
2163
2164   .richtext_help {
2165     display: inline-block;
2166     vertical-align: top;
2167     margin-left: 15px;
2168     background-color: #f8f8ff;
2169     padding: $lineheight/2;
2170     width: 220px;
2171
2172     ul {
2173       margin-bottom: 0;
2174     }
2175
2176     h4.heading, li {
2177       border-bottom: 1px solid #ccc;
2178       margin-bottom: $lineheight/4;
2179       padding-bottom: $lineheight/4;
2180     }
2181
2182     li h4, li span, li p {
2183       display: inline-block;
2184       vertical-align: top;
2185       font-size: 11px;
2186     }
2187
2188     li h4 {
2189       width: 40%;
2190       margin: 0;
2191     }
2192
2193     li span, li p {
2194       width: 50%;
2195       margin-left: $lineheight/2;
2196       margin-bottom: $lineheight/4;
2197       white-space: nowrap;
2198     }
2199   }
2200 }
2201
2202 /* Rules for the user notes list */
2203
2204 .note_list {
2205   tr.creator {
2206     background-color: #eeeeee;
2207   }
2208
2209   td {
2210     padding: 3px;
2211   }
2212
2213   p {
2214     margin-bottom: 0px;
2215   }
2216 }
2217
2218 /* Rules for the iD editor */
2219
2220 .id-embed {
2221   width: 100%;
2222   height: 100%;
2223 }
2224
2225 /* Rules for dropdown menus */
2226
2227 .dropdown {
2228   position: relative;
2229 }
2230
2231 .dropdown-toggle {
2232   *margin-bottom: -3px;
2233 }
2234
2235 .dropdown-toggle:active,
2236 .open .dropdown-toggle {
2237   outline: 0;
2238 }
2239
2240 .caret {
2241   display: inline-block;
2242   width: 0;
2243   height: 0;
2244   vertical-align: top;
2245   border-top: 4px solid #000000;
2246   border-right: 4px solid transparent;
2247   border-left: 4px solid transparent;
2248   content: "";
2249 }
2250
2251 .dropdown .caret {
2252   margin-top: 8px;
2253   margin-left: 2px;
2254 }
2255
2256 .dropdown-menu {
2257   position: absolute;
2258   top: 100%;
2259   left: -1px;
2260   z-index: 1000;
2261   display: none;
2262   float: left;
2263   min-width: 160px;
2264   padding: 5px 0;
2265   margin: 0;
2266   list-style: none;
2267   background-color: #ffffff;
2268   border: 1px solid #ccc;
2269   border-radius: 0 3px 3px;
2270   *border-right-width: 2px;
2271   *border-bottom-width: 2px;
2272   -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2273      -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2274           box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
2275   -webkit-background-clip: padding-box;
2276      -moz-background-clip: padding;
2277           background-clip: padding-box;
2278 }
2279
2280 .dropdown-menu.pull-right {
2281   right: 0;
2282   left: auto;
2283 }
2284
2285 .dropdown-menu .divider {
2286   *width: 100%;
2287   height: 1px;
2288   margin: 9px 1px;
2289   *margin: -5px 0 5px;
2290   overflow: hidden;
2291   background-color: #e5e5e5;
2292   border-bottom: 1px solid #ffffff;
2293 }
2294
2295 .dropdown-menu > li > a {
2296   display: block;
2297   padding: 3px 10px;
2298   clear: both;
2299   font-weight: normal;
2300   line-height: 20px;
2301   color: #333333;
2302   white-space: nowrap;
2303 }
2304
2305 .dropdown-menu > li > a:hover,
2306 .dropdown-menu > li > a:focus,
2307 .dropdown-submenu:hover > a,
2308 .dropdown-submenu:focus > a {
2309   color: #ffffff;
2310   text-decoration: none;
2311   background-color: $green;
2312 }
2313
2314 .dropdown-menu > .active > a,
2315 .dropdown-menu > .active > a:hover,
2316 .dropdown-menu > .active > a:focus {
2317   color: #ffffff;
2318   text-decoration: none;
2319   background-color: $green;
2320   outline: 0;
2321 }
2322
2323 .dropdown-menu > .disabled > a,
2324 .dropdown-menu > .disabled > a:hover,
2325 .dropdown-menu > .disabled > a:focus {
2326   color: #999999;
2327 }
2328
2329 .dropdown-menu > .disabled > a:hover,
2330 .dropdown-menu > .disabled > a:focus {
2331   text-decoration: none;
2332   cursor: default;
2333   background-color: transparent;
2334   background-image: none;
2335 }
2336
2337 .open {
2338   *z-index: 1000;
2339 }
2340
2341 .open > .dropdown-menu {
2342   display: block;
2343 }
2344
2345 .dropdown-backdrop {
2346   position: fixed;
2347   top: 0;
2348   right: 0;
2349   bottom: 0;
2350   left: 0;
2351   z-index: 990;
2352 }
2353
2354 /* Rules for the "Welcome" page */
2355 .site-welcome, .site-fixthemap {
2356   .center {
2357     text-align: center;
2358     .sprite { 
2359       float: none;
2360       margin: auto;
2361     }
2362   }
2363
2364   .sprite {
2365     background-image: image-url("welcome-sprite.png");
2366     background-size: 500px 250px;
2367     display: block;
2368     float: left;
2369   }
2370
2371   .icon-list { 
2372     padding-bottom: 20px;
2373     div {
2374       margin-bottom: 10px;
2375       p {
2376         padding-top: 10px;
2377       }
2378     }
2379   }
2380   .sprite.small {
2381     width: 50px;
2382     height: 50px;
2383   }
2384
2385   .sprite.x {
2386     background-position: -50px 0;
2387   }
2388
2389   .sprite.term {
2390     margin-right: 10px;
2391     vertical-align: middle;
2392   }
2393
2394   .sprite.node {
2395     background-position: -100px 0;
2396   }
2397
2398   .sprite.way {
2399     background-position: -150px 0;
2400   }
2401
2402   .sprite.tag {
2403     background-position: -200px 0;
2404   }
2405
2406   .sprite.editor {
2407     background-position: -250px 0;
2408   }
2409
2410   .sprite.question {
2411     background-position: -300px 0;
2412   }
2413
2414   .start-mapping {
2415     margin: auto;
2416     cursor: pointer;
2417     border: none;
2418     padding: 20px 40px;
2419     font-size: 30px;
2420     text-decoration: none;
2421   }
2422
2423   .note-box {
2424     margin-top: 20px;
2425     background-color: $offwhite;
2426   }
2427
2428   .icon.note {
2429     background-color: #333;
2430     border-radius: 4px;
2431   }
2432 }
2433
2434 .site-about #content {
2435   //background-color: #000;
2436   background-color: #eee;
2437   background-position: 50% 50%;
2438   background-repeat: no-repeat;
2439   background-size: cover;
2440   background-attachment: fixed;
2441
2442   &.photo-0 { background-image: image-url('about/0.jpg'); .photo-0 { display: block; } }
2443   &.photo-1 { background-image: image-url('about/1.jpg'); .photo-1 { display: block; } }
2444   &.photo-2 { background-image: image-url('about/2.jpg'); .photo-2 { display: block; } }
2445   &.photo-3 { background-image: image-url('about/4.jpg'); .photo-3 { display: block; } }
2446   &.photo-4 { background-image: image-url('about/4.jpg'); .photo-4 { display: block; } }
2447   &.photo-5 { background-image: image-url('about/5.jpg'); .photo-5 { display: block; } }
2448
2449   .caption {
2450     max-width: 200px;
2451     font: 13px/20px Helvetica, Arial, sans-serif;
2452     position: fixed;
2453     text-align: right;
2454     right: 20px;
2455     bottom: 60px;
2456     text-shadow: #000 0px 1px 5px;
2457     color: #eee;
2458     opacity: 0.8;
2459     display: none;
2460   }
2461
2462   .caption a {
2463     color: white;
2464     white-space: nowrap;
2465     text-decoration: none;
2466   }
2467
2468   a.next {
2469     display: block;
2470     position: fixed;
2471     right: 10px;
2472     bottom: 10px;
2473     width: 40px;
2474     height: 40px;
2475     border-radius: 5px;
2476     text-indent: -9999px;
2477     overflow: hidden;
2478     background: image-url('about/sprite.png') -120px 0px no-repeat;
2479     background-color: #000;
2480     background-color: rgba(0, 0, 0, 0.5);
2481   }
2482
2483   .content-inner {
2484     position: relative;
2485     color: #333;
2486     min-width: 320px;
2487     max-width: 640px;
2488
2489     .section {
2490       margin-bottom: 30px;
2491     }
2492
2493     .section:last-child {
2494       margin-bottom: 0;
2495     }
2496   }
2497
2498   .text {
2499     background: white;
2500     padding: 40px;
2501   }
2502
2503   .attr {
2504     position: relative;
2505     padding: 170px 40px 20px;
2506     background: #333;
2507     background: rgba(0, 0, 0, .8);
2508     margin-bottom: 0;
2509     margin-top: -20px;
2510
2511     h1 {
2512       display: block;
2513       color: white;
2514       font-weight: 300;
2515       font-size: 34px;
2516       span {
2517         color: #76c551;
2518       }
2519     }
2520
2521     .user-image {
2522       position: absolute;
2523       top: 0px;
2524       right: 240px;
2525       left: 0px;
2526       height: 150px;
2527       background-position: 0 50%;
2528       background-repeat: no-repeat;
2529       background-image: image-url('about/osm.png');
2530       background-size: cover;
2531       background-color: #76c551;
2532     }
2533
2534     .byosm {
2535       position: absolute;
2536       top: 0px;
2537       right: 0px;
2538       z-index: 1;
2539       width: 240px;
2540       height: 150px;
2541       padding: 20px 20px 20px 40px;
2542       font: 500 20px/24px Helvetica, Arial, sans-serif;
2543       white-space: nowrap;
2544       color: #fff;
2545       background: #76c551;
2546     }
2547
2548     .byosm span {
2549       display: inline-block;
2550       width: 20px;
2551       margin-left: -20px;
2552     }
2553   }
2554
2555   h2 {
2556     margin-bottom: 10px;
2557   }
2558
2559   .icon {
2560     width: 30px;
2561     height: 30px;
2562     margin-right: 10px;
2563     vertical-align: middle;
2564     background: 40px 40px image-url('about/sprite.png') no-repeat;
2565
2566     &.local        { background-position: 0px    0px; }
2567     &.community    { background-position: 0px  -40px; }
2568     &.open         { background-position: 0px  -80px; }
2569     &.partners     { background-position: 0px -120px; }
2570     &.infringement { background-position: 0px -160px; }
2571   }
2572 }
2573
2574 @import 'browse';
2575
2576 @media only screen and (max-width:960px) {
2577   .header-illustration.new-user-arm {
2578     display: none;
2579   }
2580 }
2581