2024-07-04 08:18:30 +00:00
|
|
|
:root {
|
|
|
|
--font-sans: -apple-system, BlinkMacSystemFont, avenir next, avenir, Segoe UI Variable Text, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, tahoma, arial, sans-serif;
|
|
|
|
--font-serif: Iowan Old Style, Apple Garamond, Baskerville, Georgia, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
|
|
|
|
--font-mono: Menlo, Cascadia Code, Consolas, Monaco, Liberation Mono, Lucida Console, monospace;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-family: var(--font-sans);
|
|
|
|
font-size: 17px;
|
|
|
|
line-height: 25px;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
background-color: var(--td-window-bg);
|
|
|
|
color: var(--td-window-fg);
|
|
|
|
}
|
|
|
|
|
|
|
|
html.custom_scroll ::-webkit-scrollbar {
|
|
|
|
border-radius: 5px !important;
|
|
|
|
border: 3px solid transparent !important;
|
|
|
|
background-color: var(--td-scroll-bg) !important;
|
|
|
|
background-clip: content-box !important;
|
|
|
|
width: 10px !important;
|
|
|
|
}
|
|
|
|
html.custom_scroll ::-webkit-scrollbar:hover {
|
|
|
|
background-color: var(--td-scroll-bg-over) !important;
|
|
|
|
}
|
|
|
|
html.custom_scroll ::-webkit-scrollbar-thumb {
|
|
|
|
border-radius: 5px !important;
|
|
|
|
border: 3px solid transparent !important;
|
|
|
|
background-color: var(--td-scroll-bar-bg) !important;
|
|
|
|
background-clip: content-box !important;
|
|
|
|
}
|
|
|
|
html.custom_scroll ::-webkit-scrollbar-thumb:hover {
|
|
|
|
background-color: var(--td-scroll-bar-bg-over) !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
#map {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#marker {
|
|
|
|
pointer-events: none;
|
2024-07-11 14:31:33 +00:00
|
|
|
display: none;
|
2024-07-04 08:18:30 +00:00
|
|
|
z-index: 2;
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
}
|
2024-07-11 14:31:33 +00:00
|
|
|
#marker_drop {
|
|
|
|
margin-bottom: 0px;
|
|
|
|
transition: margin 160ms ease-in-out;
|
|
|
|
}
|
|
|
|
#marker_drop.moving {
|
|
|
|
margin-bottom: 24px;
|
|
|
|
}
|
|
|
|
#marker_shadow {
|
|
|
|
position: absolute;
|
|
|
|
}
|