mirror of
https://github.com/telegramdesktop/tdesktop
synced 2025-02-16 12:17:05 +00:00
61 lines
1.6 KiB
CSS
61 lines
1.6 KiB
CSS
|
: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;
|
||
|
display: flex;
|
||
|
z-index: 2;
|
||
|
position: absolute;
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
}
|