Fix headings; work on features page

This commit is contained in:
Matthew Holt 2023-10-01 12:57:19 -06:00 committed by Francis Lavoie
parent 2b7a952093
commit 85df03bfad
No known key found for this signature in database
GPG key ID: 0F66EE1687682239
6 changed files with 102 additions and 18 deletions

View file

@ -18,3 +18,45 @@
margin-bottom: .5em;
min-width: 200px;
}
.feature-list {
font-size: 90%;
margin-top: 50px;
}
.feature-row {
display: grid;
grid: auto / 1fr 3fr 2fr;
gap: 2em;
padding: 2em 0;
border-bottom: 2px dashed #a4c8ff25; /* #e6eaf0 */
}
.feature-row .benefits {
color: var(--text-color-muted);
font-weight: 500;
}
.feature-row .detail {
font-weight: 500;
}
.feature-row ul.detail {
margin-left: 1em;
}
.feature-row ul li {
margin-bottom: .5em;
}
.feature-row:last-child {
border-bottom: none;
}
/* TODO: Figure this out */
@media (max-width: 800px) {
.feature-row {
grid: repeat(3, auto) / 1fr;
}
}