diff options
author | Ashelyn Rose <git@tempest.dev> | 2023-05-08 23:10:59 -0600 |
---|---|---|
committer | Ashelyn Rose <git@tempest.dev> | 2023-05-08 23:10:59 -0600 |
commit | c32753a06f454ef15011e8df8a2083b9cdc72f58 (patch) | |
tree | d12e3535bbb57b008e059eea63daaf15703cc43f /styles/about.module.css | |
parent | d89d92d3936683f4212186cef517c7930dd5b33a (diff) |
filled out about system page
Diffstat (limited to 'styles/about.module.css')
-rw-r--r-- | styles/about.module.css | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/styles/about.module.css b/styles/about.module.css new file mode 100644 index 0000000..40a9b72 --- /dev/null +++ b/styles/about.module.css @@ -0,0 +1,62 @@ +.container { + display: flex; + flex-direction: row; + max-width: var(--system-width); + width: calc(100vw - 2 * var(--text-padding)); + margin: 0 auto; + margin-top: 75px; + justify-content: space-between; +} + +.member { + flex: 1; + display: flex; + flex-direction: column; + max-width: 280px; + box-sizing: border-box; + margin: 0 calc(.5 * var(--text-padding)); + padding: 0 var(--text-padding); + background: var(--main-background); + box-shadow: var(--card-shadow); +} + +.member img { + display: block; + width: 150px; + box-sizing: border-box; + border: solid 4px var(--member-color); + border-radius: 75px; + margin: 0 auto; + margin-top: -75px; + user-select: none; +} + +.member h2 { + text-align: center; + color: var(--member-color); + margin: 0; +} + +.member p { + margin-top: 0; +} + +.member .pronouns { + text-align: center; + margin-top: 0; +} + +.member p:nth-last-child(2) { + flex: 1; +} + +.member p:last-child { + text-align: center; +} + +.summary { + width: var(--main-width); + box-sizing: border-box; + padding: var(--text-padding); + margin: 0 auto; +} |