Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 

351 Zeilen
6.1 KiB

  1. :root,
  2. :host {
  3. --ol-background-color: white;
  4. --ol-accent-background-color: #F5F5F5;
  5. --ol-subtle-background-color: rgba(128, 128, 128, 0.25);
  6. --ol-partial-background-color: rgba(255, 255, 255, 0.75);
  7. --ol-foreground-color: #333333;
  8. --ol-subtle-foreground-color: #666666;
  9. --ol-brand-color: #00AAFF;
  10. }
  11. .ol-box {
  12. box-sizing: border-box;
  13. border-radius: 2px;
  14. border: 1.5px solid var(--ol-background-color);
  15. background-color: var(--ol-partial-background-color);
  16. }
  17. .ol-mouse-position {
  18. top: 8px;
  19. right: 8px;
  20. position: absolute;
  21. }
  22. .ol-scale-line {
  23. background: var(--ol-partial-background-color);
  24. border-radius: 4px;
  25. bottom: 8px;
  26. left: 8px;
  27. padding: 2px;
  28. position: absolute;
  29. }
  30. .ol-scale-line-inner {
  31. border: 1px solid var(--ol-subtle-foreground-color);
  32. border-top: none;
  33. color: var(--ol-foreground-color);
  34. font-size: 10px;
  35. text-align: center;
  36. margin: 1px;
  37. will-change: contents, width;
  38. transition: all 0.25s;
  39. }
  40. .ol-scale-bar {
  41. position: absolute;
  42. bottom: 8px;
  43. left: 8px;
  44. }
  45. .ol-scale-bar-inner {
  46. display: flex;
  47. }
  48. .ol-scale-step-marker {
  49. width: 1px;
  50. height: 15px;
  51. background-color: var(--ol-foreground-color);
  52. float: right;
  53. z-index: 10;
  54. }
  55. .ol-scale-step-text {
  56. position: absolute;
  57. bottom: -5px;
  58. font-size: 10px;
  59. z-index: 11;
  60. color: var(--ol-foreground-color);
  61. text-shadow: -1.5px 0 var(--ol-partial-background-color), 0 1.5px var(--ol-partial-background-color), 1.5px 0 var(--ol-partial-background-color), 0 -1.5px var(--ol-partial-background-color);
  62. }
  63. .ol-scale-text {
  64. position: absolute;
  65. font-size: 12px;
  66. text-align: center;
  67. bottom: 25px;
  68. color: var(--ol-foreground-color);
  69. text-shadow: -1.5px 0 var(--ol-partial-background-color), 0 1.5px var(--ol-partial-background-color), 1.5px 0 var(--ol-partial-background-color), 0 -1.5px var(--ol-partial-background-color);
  70. }
  71. .ol-scale-singlebar {
  72. position: relative;
  73. height: 10px;
  74. z-index: 9;
  75. box-sizing: border-box;
  76. border: 1px solid var(--ol-foreground-color);
  77. }
  78. .ol-scale-singlebar-even {
  79. background-color: var(--ol-subtle-foreground-color);
  80. }
  81. .ol-scale-singlebar-odd {
  82. background-color: var(--ol-background-color);
  83. }
  84. .ol-unsupported {
  85. display: none;
  86. }
  87. .ol-viewport,
  88. .ol-unselectable {
  89. -webkit-touch-callout: none;
  90. -webkit-user-select: none;
  91. -moz-user-select: none;
  92. user-select: none;
  93. -webkit-tap-highlight-color: transparent;
  94. }
  95. .ol-viewport canvas {
  96. all: unset;
  97. overflow: hidden;
  98. }
  99. .ol-viewport {
  100. touch-action: pan-x pan-y;
  101. }
  102. .ol-selectable {
  103. -webkit-touch-callout: default;
  104. -webkit-user-select: text;
  105. -moz-user-select: text;
  106. user-select: text;
  107. }
  108. .ol-grabbing {
  109. cursor: -webkit-grabbing;
  110. cursor: -moz-grabbing;
  111. cursor: grabbing;
  112. }
  113. .ol-grab {
  114. cursor: move;
  115. cursor: -webkit-grab;
  116. cursor: -moz-grab;
  117. cursor: grab;
  118. }
  119. .ol-control {
  120. position: absolute;
  121. background-color: var(--ol-subtle-background-color);
  122. border-radius: 4px;
  123. }
  124. .ol-zoom {
  125. top: .5em;
  126. left: .5em;
  127. }
  128. .ol-rotate {
  129. top: .5em;
  130. right: .5em;
  131. transition: opacity .25s linear, visibility 0s linear;
  132. }
  133. .ol-rotate.ol-hidden {
  134. opacity: 0;
  135. visibility: hidden;
  136. transition: opacity .25s linear, visibility 0s linear .25s;
  137. }
  138. .ol-zoom-extent {
  139. top: 4.643em;
  140. left: .5em;
  141. }
  142. .ol-full-screen {
  143. right: .5em;
  144. top: .5em;
  145. }
  146. .ol-control button {
  147. display: block;
  148. margin: 1px;
  149. padding: 0;
  150. color: var(--ol-subtle-foreground-color);
  151. font-weight: bold;
  152. text-decoration: none;
  153. font-size: inherit;
  154. text-align: center;
  155. height: 1.375em;
  156. width: 1.375em;
  157. line-height: .4em;
  158. background-color: var(--ol-background-color);
  159. border: none;
  160. border-radius: 2px;
  161. }
  162. .ol-control button::-moz-focus-inner {
  163. border: none;
  164. padding: 0;
  165. }
  166. .ol-zoom-extent button {
  167. line-height: 1.4em;
  168. }
  169. .ol-compass {
  170. display: block;
  171. font-weight: normal;
  172. will-change: transform;
  173. }
  174. .ol-touch .ol-control button {
  175. font-size: 1.5em;
  176. }
  177. .ol-touch .ol-zoom-extent {
  178. top: 5.5em;
  179. }
  180. .ol-control button:hover,
  181. .ol-control button:focus {
  182. text-decoration: none;
  183. outline: 1px solid var(--ol-subtle-foreground-color);
  184. color: var(--ol-foreground-color);
  185. }
  186. .ol-zoom .ol-zoom-in {
  187. border-radius: 2px 2px 0 0;
  188. }
  189. .ol-zoom .ol-zoom-out {
  190. border-radius: 0 0 2px 2px;
  191. }
  192. .ol-attribution {
  193. text-align: right;
  194. bottom: .5em;
  195. right: .5em;
  196. max-width: calc(100% - 1.3em);
  197. display: flex;
  198. flex-flow: row-reverse;
  199. align-items: center;
  200. }
  201. .ol-attribution a {
  202. color: var(--ol-subtle-foreground-color);
  203. text-decoration: none;
  204. }
  205. .ol-attribution ul {
  206. margin: 0;
  207. padding: 1px .5em;
  208. color: var(--ol-foreground-color);
  209. text-shadow: 0 0 2px var(--ol-background-color);
  210. font-size: 12px;
  211. }
  212. .ol-attribution li {
  213. display: inline;
  214. list-style: none;
  215. }
  216. .ol-attribution li:not(:last-child):after {
  217. content: " ";
  218. }
  219. .ol-attribution img {
  220. max-height: 2em;
  221. max-width: inherit;
  222. vertical-align: middle;
  223. }
  224. .ol-attribution button {
  225. flex-shrink: 0;
  226. }
  227. .ol-attribution.ol-collapsed ul {
  228. display: none;
  229. }
  230. .ol-attribution:not(.ol-collapsed) {
  231. background: var(--ol-partial-background-color);
  232. }
  233. .ol-attribution.ol-uncollapsible {
  234. bottom: 0;
  235. right: 0;
  236. border-radius: 4px 0 0;
  237. }
  238. .ol-attribution.ol-uncollapsible img {
  239. margin-top: -.2em;
  240. max-height: 1.6em;
  241. }
  242. .ol-attribution.ol-uncollapsible button {
  243. display: none;
  244. }
  245. .ol-zoomslider {
  246. top: 4.5em;
  247. left: .5em;
  248. height: 200px;
  249. }
  250. .ol-zoomslider button {
  251. position: relative;
  252. height: 10px;
  253. }
  254. .ol-touch .ol-zoomslider {
  255. top: 5.5em;
  256. }
  257. .ol-overviewmap {
  258. left: 0.5em;
  259. bottom: 0.5em;
  260. }
  261. .ol-overviewmap.ol-uncollapsible {
  262. bottom: 0;
  263. left: 0;
  264. border-radius: 0 4px 0 0;
  265. }
  266. .ol-overviewmap .ol-overviewmap-map,
  267. .ol-overviewmap button {
  268. display: block;
  269. }
  270. .ol-overviewmap .ol-overviewmap-map {
  271. border: 1px solid var(--ol-subtle-foreground-color);
  272. height: 150px;
  273. width: 150px;
  274. }
  275. .ol-overviewmap:not(.ol-collapsed) button {
  276. bottom: 0;
  277. left: 0;
  278. position: absolute;
  279. }
  280. .ol-overviewmap.ol-collapsed .ol-overviewmap-map,
  281. .ol-overviewmap.ol-uncollapsible button {
  282. display: none;
  283. }
  284. .ol-overviewmap:not(.ol-collapsed) {
  285. background: var(--ol-subtle-background-color);
  286. }
  287. .ol-overviewmap-box {
  288. border: 1.5px dotted var(--ol-subtle-foreground-color);
  289. }
  290. .ol-overviewmap .ol-overviewmap-box:hover {
  291. cursor: move;
  292. }