style(website): minor tweaks on light/dark mode

This commit is contained in:
Elian Doran
2025-09-27 21:20:28 +03:00
parent cbaae52a7e
commit 096fd82e64
2 changed files with 8 additions and 9 deletions

View File

@@ -33,12 +33,11 @@
} }
.quick-start { .quick-start {
border: 1px solid var(--muted-color); background-color: #ececec;
padding: 0.75em; padding: 0.75em;
border-radius: 6px; border-radius: 6px;
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
border: none;
background-color: black; background-color: black;
} }

View File

@@ -128,10 +128,6 @@ section.accented {
background: linear-gradient(135deg, rgba(228, 123, 25, 0.08), rgba(79, 165, 43, 0.08)); background: linear-gradient(135deg, rgba(228, 123, 25, 0.08), rgba(79, 165, 43, 0.08));
} }
section:not(.accented) + section:not(.accented) {
box-shadow: 0 0 6px black inset;
}
.benefits-container .card { .benefits-container .card {
padding: 1em; padding: 1em;
} }
@@ -161,9 +157,13 @@ section.final-cta {
} }
} }
section.final-cta .buttons { section.faq {
display: flex; box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
gap: 2em;
@media (prefers-color-scheme: dark) {
box-shadow: unset;
border-top: 1px solid var(--brand-1);
}
} }
.list-with-screenshot { .list-with-screenshot {