optigami / src /index.css
sissississi's picture
iana (#1)
19abe39
raw
history blame
641 Bytes
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;500;700&family=IBM+Plex+Mono:wght@300;400;500&display=swap');
*, *::before, *::after {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
background: #0d0d14;
color: #f8fafc;
font-family: 'IBM Plex Mono', monospace;
font-size: 13px;
line-height: 1.5;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}
::-webkit-scrollbar {
width: 4px;
height: 4px;
}
::-webkit-scrollbar-track {
background: #0d0d14;
}
::-webkit-scrollbar-thumb {
background: #2a2a3a;
}
::-webkit-scrollbar-thumb:hover {
background: #3a3a5a;
}