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