You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

201 lines
3.5 KiB

  1. /***** GENERAL LAYOUT *****/
  2. body {
  3. left: 0px;
  4. right: 0px;
  5. top: 0px;
  6. bottom: 0px;
  7. font-family:Tahoma,Arial,Verdana;
  8. font-size: 11px;
  9. color:#333;
  10. }
  11. #sidebar {
  12. top: 0px;
  13. bottom: 0px;
  14. left: 0px;
  15. width: 250px;
  16. padding-left:10px;
  17. padding-right:10px;
  18. position: absolute;
  19. }
  20. #map {
  21. position: absolute;
  22. left: 270px;
  23. border-left: 1px solid #999;
  24. top: 0;
  25. bottom: 0;
  26. right: 0;
  27. }
  28. #mapShadow {
  29. position: absolute;
  30. left: 271px;
  31. top: 0;
  32. bottom: 0;
  33. width: 5px;
  34. z-index: 10000;
  35. background-image: url(img/shadow_left.png);
  36. background-repeat: repeat-y;
  37. }
  38. #sidebar {
  39. display: flex;
  40. flex-direction: column;
  41. }
  42. #sidebar > #header {
  43. padding-top: 27px;
  44. height:110px;
  45. font-size:18px;
  46. color:#333;
  47. line-height:130%;
  48. margin-top:5px;
  49. position: relative;
  50. flex-grow: 0;
  51. flex-shrink: 0;
  52. }
  53. #sidebar > #header > img {
  54. float: left;
  55. margin-top: -17px;
  56. padding-right: 10px;
  57. }
  58. #sidebar > #header > .large {
  59. font-size: 28px;
  60. display: block;
  61. }
  62. #sidebar > #header > .version {
  63. text-align: right;
  64. padding-right: 24px;
  65. float: right;
  66. font-size: 16px;
  67. }
  68. #sidebar > #content {
  69. flex: 1;
  70. flex-shrink: 0;
  71. overflow: auto;
  72. }
  73. #sidebar > #footer {
  74. flex: 0;
  75. }
  76. /***** CATEGORY *****/
  77. /* root category */
  78. #content > .category > .content > .categoryWrapper > .category {
  79. margin-left: 0;
  80. }
  81. #content .category {
  82. position: relative;
  83. }
  84. #content .category > .loadingIndicator {
  85. position: absolute;
  86. right: 0;
  87. top: 0;
  88. font-size: 15px;
  89. display: none;
  90. }
  91. #content .category.loading > .loadingIndicator {
  92. padding-top: 2px;
  93. display: block;
  94. }
  95. #content .category header {
  96. padding-top: 3px;
  97. border-bottom: 1px dotted #999;
  98. user-select: none;
  99. font-size: 15px;
  100. }
  101. #content .category header > a {
  102. text-decoration: none;
  103. color: black;
  104. }
  105. #content .category header > a:active,
  106. #content .category header > a:hover {
  107. text-decoration: underline;
  108. }
  109. #content .category > .content,
  110. #content .category > .status {
  111. display: none;
  112. }
  113. #content .category.open > .content,
  114. #content .category.open > .status {
  115. display: block;
  116. }
  117. #content .category > .status,
  118. #content .category > .content > ul.overpass-layer-list {
  119. padding-top: 3px;
  120. background: #efefef;
  121. }
  122. #content .category > div > div> .category {
  123. margin-left: 1em;
  124. }
  125. ul.overpass-layer-list {
  126. margin-top: 0;
  127. margin-bottom: 0;
  128. }
  129. ul.overpass-layer-list > li {
  130. position: relative;
  131. list-style: none;
  132. min-height: 30px;
  133. }
  134. ul.overpass-layer-list > li > .markerParent {
  135. position: absolute;
  136. margin-left: -35px;
  137. width: 30px;
  138. height: 30px;
  139. text-align: center;
  140. display: block;
  141. color: black;
  142. text-decoration: none;
  143. }
  144. ul.overpass-layer-list > li > .markerParent > .marker {
  145. }
  146. ul.overpass-layer-list > li > .markerParent > .icon {
  147. text-align: center;
  148. position: absolute;
  149. top: 5;
  150. left: 0;
  151. right: 0;
  152. z-index: 1;
  153. display: inline-block;
  154. }
  155. ul.overpass-layer-list > li > a.title {
  156. display: inline-block;
  157. color: black;
  158. text-decoration: none;
  159. }
  160. ul.overpass-layer-list > li > a.title:hover,
  161. ul.overpass-layer-list > li > a.title:active {
  162. text-decoration: underline;
  163. }
  164. ul.overpass-layer-list > li > div.description {
  165. font-style: italic;
  166. color: #707070;
  167. float: right;
  168. text-align: right;
  169. }
  170. ul.overpass-layer-list > li:after {
  171. content: '';
  172. display: table;
  173. clear: both;
  174. }
  175. .leaflet-popup-content {
  176. max-height: 250px;
  177. overflow: auto;
  178. }
  179. .leaflet-popup-content pre {
  180. font-size: 8px;
  181. }
  182. .overpass-layer-icon div {
  183. position: relative;
  184. top: -37px;
  185. font-size: 12px;
  186. width: 25px;
  187. text-align: center;
  188. }
  189. #content a.showDetails {
  190. display: none;
  191. }
  192. a.showDetails {
  193. display: block;
  194. }