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