Spaces:
Running
Running
File size: 641 Bytes
19abe39 2a29f54 19abe39 2a29f54 19abe39 2a29f54 19abe39 2a29f54 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | @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;
}
|