diff options
author | Freya Murphy <freya@freyacat.org> | 2024-12-23 11:13:27 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-12-23 11:13:27 -0500 |
commit | 5a2ba9c2e7605bb788bc406184547d22c6436867 (patch) | |
tree | cbd988d534e8a8593a31d70571222443f80da0b3 /src/scss/people.scss | |
parent | fix about modal (diff) | |
download | xssbook2-5a2ba9c2e7605bb788bc406184547d22c6436867.tar.gz xssbook2-5a2ba9c2e7605bb788bc406184547d22c6436867.tar.bz2 xssbook2-5a2ba9c2e7605bb788bc406184547d22c6436867.zip |
v2.1.0, refactor w/ crimson
Diffstat (limited to 'src/scss/people.scss')
-rw-r--r-- | src/scss/people.scss | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/src/scss/people.scss b/src/scss/people.scss index 4511aa8..84a4f4c 100644 --- a/src/scss/people.scss +++ b/src/scss/people.scss @@ -9,16 +9,20 @@ main#main { font-size: 3rem; margin-bottom: 0; } + + > hr { + margin-bottom: $outer-gap; + } } #people-container { display: grid; width: 100%; - padding: $inner-gap; - margin-bottom: $outer-gap; grid-template-columns: repeat(auto-fill, minmax($profile-width, 1fr) ); grid-auto-rows: max-content; grid-gap: 2em; + padding-left: $outer-gap; + padding-right: $outer-gap; .profile { width: $profile-width; @@ -42,5 +46,12 @@ main#main { margin-bottom: $inner-gap; } } +} +#no-people { + font-weight: bold; + font-size: 1.2em; + width: fit-content; + margin-left: auto; + margin-right: auto; } |