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