45 lines
652 B
CSS
45 lines
652 B
CSS
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&family=Roboto+Condensed:wght@400;700&display=swap');
|
|
|
|
@import 'tailwindcss';
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
background: #050505;
|
|
color: #c9c9c9;
|
|
font-family: 'Roboto Condensed', sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-family: 'Oswald', sans-serif;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
width: 6px;
|
|
height: 6px;
|
|
}
|
|
|
|
::-webkit-scrollbar-track {
|
|
background: #050505;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
background: #330000;
|
|
border-radius: 3px;
|
|
border: 1px solid #1a1a1a;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #a30000;
|
|
}
|