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