This commit is contained in:
Daniil
2026-02-28 17:41:14 +03:00
parent 71b974903a
commit 305e72725c
18 changed files with 416 additions and 53 deletions
@@ -0,0 +1,47 @@
.card {
@include mixins.reset-button;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 12px;
width: 160px;
height: 160px;
background: variables.$bg-default;
border: 1px solid variables.$border-default;
border-radius: variables.$radius-lg;
box-shadow: var(--shadow-sm);
color: variables.$text-secondary;
cursor: pointer;
transition:
transform 0.15s ease,
box-shadow 0.15s ease,
border-color 0.15s ease,
color 0.15s ease;
&:hover {
transform: translateY(-3px);
box-shadow: var(--shadow-md);
color: variables.$text-primary;
}
&.accent {
background: variables.$purple-50;
border-color: variables.$purple-100;
color: variables.$purple-400;
&:hover {
background: variables.$purple-100;
border-color: variables.$purple-400;
}
}
}
.label {
@include typography.font-body-s;
}