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