workstations and light theme

This commit is contained in:
2026-04-16 16:33:48 +03:00
parent 555e920c18
commit bbfaf5ccc5
37 changed files with 1015 additions and 106 deletions
+30 -1
View File
@@ -5,6 +5,32 @@
margin-top: 18px;
}
.stack-toggle {
margin-top: 14px;
min-height: 38px;
padding: 8px 16px;
border: 1px solid var(--border);
border-radius: 8px;
background-color: transparent;
color: var(--text);
cursor: pointer;
font: inherit;
transition:
background-color 160ms ease,
border-color 160ms ease,
color 160ms ease;
}
.stack-toggle:hover {
border-color: var(--accent);
background-color: var(--glow-mint);
color: var(--text);
}
.stack-toggle[hidden] {
display: none;
}
.stack-card {
position: relative;
display: grid;
@@ -30,7 +56,7 @@
.stack-card:hover {
border-color: var(--card-accent);
box-shadow: 0 20px 44px rgba(0, 0, 0, 0.26);
transform: translateY(-2px);
transform: translateY(-5px);
}
.stack-card__badge {
@@ -70,6 +96,8 @@
.stack-card__title {
margin-top: 4px;
color: var(--text);
font-size: 1.5rem;
line-height: 1;
}
.stack-card__footer {
@@ -88,6 +116,7 @@
border: 1px solid rgba(220, 215, 186, 0.16);
padding: 4px 8px;
background-color: rgba(31, 31, 40, 0.4);
font-style: italic;
}
@media (max-width: 780px) {