Larger cards on larger screens

This commit is contained in:
dave onion 2026-03-24 14:43:21 -04:00
parent bde0da3538
commit 76a51be6ba
3 changed files with 10 additions and 3 deletions

View file

@ -11135,7 +11135,6 @@ a.card-project:hover {
.card-initiative { .card-initiative {
padding: 0.5em; padding: 0.5em;
max-width: 30em;
color: #FFFFFF; color: #FFFFFF;
background-color: #0D1E34; background-color: #0D1E34;
box-shadow: none; box-shadow: none;
@ -11166,6 +11165,11 @@ a.card-project:hover {
font-family: "Anonymous Pro", "Andale Mono", AndaleMono, monospace; font-family: "Anonymous Pro", "Andale Mono", AndaleMono, monospace;
font-size: 0.88rem; font-size: 0.88rem;
} }
@media (width > 1500px) {
.card-initiative .card-content .subtitle {
font-size: 1.25rem;
}
}
a.card-initiative:hover { a.card-initiative:hover {
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3); box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);

File diff suppressed because one or more lines are too long

View file

@ -221,7 +221,7 @@ a.card-project {
// Initiative // Initiative
.card-initiative { .card-initiative {
padding: 0.5em; padding: 0.5em;
max-width: 30em; // max-width: 30em;
color: $white; color: $white;
background-color: $dark; background-color: $dark;
box-shadow: none; box-shadow: none;
@ -254,6 +254,9 @@ a.card-project {
color: inherit; color: inherit;
font-family: $family-monospace; font-family: $family-monospace;
font-size: $size-6; font-size: $size-6;
@media (width > 1500px) {
font-size: $size-5;
}
} }
} }
} }