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