88 lines
1.5 KiB
SCSS
88 lines
1.5 KiB
SCSS
@font-face {
|
|
font-family: 'Gunship';
|
|
src: url("/gunship.ttf");
|
|
}
|
|
|
|
[data-theme='dark'] {
|
|
--main: #CD034F;
|
|
--main-hover: #A0023F;
|
|
--main-active: #7A002F;
|
|
|
|
--primary: #111210;
|
|
--secondary: #2A2B28;
|
|
--tertiary: #404040;
|
|
--text: #FFFFFF;
|
|
--text-secondary: #C5c3c3;
|
|
--text-error: #ff2b2b;
|
|
|
|
color: var(--text);
|
|
}
|
|
|
|
[data-theme='light'] {
|
|
--main: #CD034F;
|
|
--main-hover: #A0023F;
|
|
--main-active: #7A002F;
|
|
|
|
--primary: #FFFFFF;
|
|
--secondary: #EAEAEA;
|
|
--tertiary: #C5c3c3;
|
|
--text: #111210;
|
|
--text-secondary: #404040;
|
|
--text-error: #CD034F;
|
|
|
|
color: var(--text);
|
|
}
|
|
|
|
html, body {
|
|
margin: 0 !important;
|
|
font-family: 'Inter', sans-serif;
|
|
min-height: 100vh;
|
|
min-width: 100vw;
|
|
margin: 0;
|
|
padding: 0;
|
|
height: 100%;
|
|
overflow-x: hidden;
|
|
background-color: var(--primary);
|
|
transition: all 0.5s ease-in-out;
|
|
|
|
}
|
|
|
|
.no-decoration {
|
|
text-decoration: none !important;
|
|
}
|
|
|
|
.underline {
|
|
text-decoration: underline !important;
|
|
}
|
|
|
|
h1 {
|
|
font-family: 'Gunship';
|
|
font-size: 30px;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
a {
|
|
color: var(--text-secondary)
|
|
}
|
|
|
|
/*Scrollbar */
|
|
::-webkit-scrollbar {
|
|
width: 5px;
|
|
margin-right: 20px;
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
border-radius: 12px;
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background: #ffffff56;
|
|
border-radius: 5px;
|
|
transition: 0.2s;
|
|
}
|
|
|
|
::-webkit-scrollbar-thumb:hover {
|
|
background: #ffffffa8;
|
|
}
|
|
|
|
.full {
|
|
width: 100%;
|
|
} |