63 lines
1.2 KiB
SCSS
63 lines
1.2 KiB
SCSS
@import '@/assets/scss/_variables';
|
|
|
|
// Fonts
|
|
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
|
|
|
|
body {
|
|
-ms-overflow-style: none;
|
|
scrollbar-width: none;
|
|
background: $black;
|
|
margin: 0;
|
|
|
|
// Disable selection, might wanna comment when debugging
|
|
-webkit-user-select: none; /* Safari */
|
|
-ms-user-select: none; /* IE 10 and IE 11 */
|
|
user-select: none; /* Standard syntax */
|
|
}
|
|
|
|
h1, h2, h3, h4, h5, h6, button, a {
|
|
font-family: "Poppins", serif;
|
|
color: $white;
|
|
font-weight: 500;
|
|
}
|
|
|
|
p, span, li, label {
|
|
font-family: "Inter", serif;
|
|
color: $white;
|
|
}
|
|
button, a {
|
|
font-weight: 500;
|
|
text-shadow: 0 4px 6px rgba($black, 0.25);
|
|
}
|
|
|
|
button, input {
|
|
border: none;
|
|
background-color: transparent;
|
|
}
|
|
|
|
button {
|
|
text-align: center;
|
|
|
|
&.w-full {
|
|
width: 100%;
|
|
}
|
|
|
|
&.btn-cyan {
|
|
background-color: rgba($cyan, 0.5);
|
|
border: 1px solid $white;
|
|
border-radius: 5px;
|
|
text-shadow: 0 3px 6px rgba($black, 0.2);
|
|
|
|
&:hover {
|
|
background-color: $cyan;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
} |