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