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