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