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