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