112 lines
1.9 KiB
SCSS
112 lines
1.9 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: $titles;
|
|
color: $white;
|
|
font-weight: 500;
|
|
}
|
|
|
|
p,
|
|
span,
|
|
li,
|
|
label {
|
|
font-family: $default;
|
|
color: $white;
|
|
}
|
|
|
|
button,
|
|
a {
|
|
font-weight: 500;
|
|
text-shadow: 0 4px 6px rgba($black, 0.25);
|
|
}
|
|
|
|
button,
|
|
input {
|
|
border: none;
|
|
background-color: transparent;
|
|
|
|
&[type='number'] {
|
|
-webkit-appearance: textfield;
|
|
-moz-appearance: textfield;
|
|
appearance: textfield;
|
|
}
|
|
&[type='number']::-webkit-inner-spin-button,
|
|
&[type='number']::-webkit-outer-spin-button {
|
|
-webkit-appearance: none;
|
|
}
|
|
}
|
|
|
|
.input-cyan {
|
|
padding: 8px 10px;
|
|
font-family: $titles;
|
|
border: 1px solid $cyan;
|
|
background-color: rgba($white, 0.8);
|
|
border-radius: 5px;
|
|
&:focus,
|
|
&:focus-visible {
|
|
outline: $cyan auto 2px;
|
|
}
|
|
}
|
|
|
|
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);
|
|
|
|
&.active,
|
|
&:hover {
|
|
background-color: $cyan;
|
|
}
|
|
}
|
|
|
|
&.btn-bordeaux {
|
|
background-color: rgba($bordeaux, 0.5);
|
|
border: 1px solid $white;
|
|
border-radius: 5px;
|
|
text-shadow: 0 3px 6px rgba($black, 0.2);
|
|
|
|
&.active,
|
|
&:hover {
|
|
background-color: $bordeaux;
|
|
}
|
|
}
|
|
|
|
&:hover {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
}
|