diff options
author | Adam T. Carpenter <atc@53hor.net> | 2025-06-04 08:16:00 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2025-06-04 08:16:00 -0400 |
commit | 1d7bc2051d0dea42f85453f8918f329104a48867 (patch) | |
tree | 73a7c489fdfaf4f612dd25bd026ba07252dae365 /static/styles.css | |
parent | 418de21a5795c9e3da3963ecaa6214dc67d977b4 (diff) | |
download | carpentertutoring-1d7bc2051d0dea42f85453f8918f329104a48867.tar.xz carpentertutoring-1d7bc2051d0dea42f85453f8918f329104a48867.zip |
fix: non-offering card flexing
Diffstat (limited to 'static/styles.css')
-rw-r--r-- | static/styles.css | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/static/styles.css b/static/styles.css index 4fcea55..c001fd2 100644 --- a/static/styles.css +++ b/static/styles.css @@ -213,10 +213,8 @@ section.cards { .card { align-content: center; - align-items: center; background-color: white; border-radius: 1em; - flex: 1 0 21%; margin-bottom: 0.5em; margin-left: 1em; margin-right: 1em; @@ -225,11 +223,21 @@ section.cards { text-align: center; } -section.cards .full { +section#offerings .card { + flex: 1 0 21%; +} + +section#offerings .full { flex: 1 1 100%; } .centered { text-align: center; justify-content: center; +} + +a[target*="_blank"]:after { + content: url('/assets/icons/open-in-new.svg'); + display: inline-block; + width: 1em; }
\ No newline at end of file |