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