Files
aerbim-ht-monitor/frontend/app/globals.css

77 lines
1.3 KiB
CSS

@import 'tailwindcss';
:root {
--background: #0e111a;
--foreground: #ffffff;
}
/* @font-face {
font-family: '';
font-style: normal;
font-weight: 200 700;
font-display: swap;
src: url('') format('truetype');
} */
@theme inline {
--color-background: var(--background);
--color-foreground: var(--foreground);
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
--color-blue: #3193f5;
--color-cards: #161824;
/* --font-display: '', 'sans-serif'; */
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0e111a;
--foreground: #ededed;
}
}
html,
body {
margin: 0;
padding: 0;
height: 100%;
overflow: hidden;
}
body {
background: var(--background);
color: var(--foreground);
font-family: Arial, Helvetica, sans-serif;
}
/* Стилизация скроллбара */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #0e111a;
border-radius: 4px;
}
::-webkit-scrollbar-thumb {
background: #374151;
border-radius: 4px;
border: 1px solid #1f2937;
}
::-webkit-scrollbar-thumb:hover {
background: #4b5563;
}
::-webkit-scrollbar-corner {
background: #0e111a;
}
/* Стилизация скроллбара - Firefox*/
* {
scrollbar-width: thin;
scrollbar-color: #374151 #0e111a;
}