asset mngr stuff

This commit is contained in:
2024-06-29 22:39:22 +02:00
parent 2313a0faea
commit 270b14d8e5
22 changed files with 316 additions and 261 deletions

View File

@ -19,4 +19,4 @@ $green: #09ad19;
// Fonts
$titles: 'Poppins', serif;
$default: 'Inter', serif;
$default: 'Inter', serif;

View File

@ -47,13 +47,13 @@ input {
border: none;
background-color: transparent;
&[type="number"] {
&[type='number'] {
-webkit-appearance: textfield;
-moz-appearance: textfield;
appearance: textfield;
}
&[type=number]::-webkit-inner-spin-button,
&[type=number]::-webkit-outer-spin-button {
&[type='number']::-webkit-inner-spin-button,
&[type='number']::-webkit-outer-spin-button {
-webkit-appearance: none;
}
}
@ -64,7 +64,8 @@ input {
border: 1px solid $cyan;
background-color: rgba($white, 0.8);
border-radius: 5px;
&:focus, &:focus-visible {
&:focus,
&:focus-visible {
outline: $cyan auto 2px;
}
}
@ -82,7 +83,8 @@ button {
border-radius: 5px;
text-shadow: 0 3px 6px rgba($black, 0.2);
&.active, &:hover {
&.active,
&:hover {
background-color: $cyan;
}
}
@ -93,7 +95,8 @@ button {
border-radius: 5px;
text-shadow: 0 3px 6px rgba($black, 0.2);
&.active, &:hover {
&.active,
&:hover {
background-color: $bordeaux;
}
}