diff options
author | Ashelyn Rose <git@tempest.dev> | 2023-05-09 03:13:56 -0600 |
---|---|---|
committer | Ashelyn Rose <git@tempest.dev> | 2023-05-09 03:13:56 -0600 |
commit | ce289294a03a1eb28da48cdb4cddc5124053aaa3 (patch) | |
tree | d548b28165271d525ef672a4e92ed67cabe89442 /components/InfoBar/InfoBar.module.css | |
parent | c32753a06f454ef15011e8df8a2083b9cdc72f58 (diff) |
about pages, added profile pictures
Diffstat (limited to 'components/InfoBar/InfoBar.module.css')
-rw-r--r-- | components/InfoBar/InfoBar.module.css | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/components/InfoBar/InfoBar.module.css b/components/InfoBar/InfoBar.module.css index 7786bd1..523bf42 100644 --- a/components/InfoBar/InfoBar.module.css +++ b/components/InfoBar/InfoBar.module.css @@ -21,14 +21,42 @@ color: var(--text-dimmed); } +.infobar.postMeta img { + box-sizing: border-box; + border: solid 2px var(--author-color, var(--text-dimmed)); + width: 30px; + height: 30px; + border-radius: 15px; + margin-right: calc(.5 * var(--text-padding)); + margin-left: -6px; +} + .infobar.postMeta .author { - color: var(--text-medium); + color: var(--author-color, var(--text-medium)); } .infobar.postMeta .date { font-style: italic; } +.infobar.memberProfile img { + width: 150px; + height: 150px; + border-radius: 75px; + box-sizing: border-box; + border: solid 4px var(--member-color, var(--text-dimmed)); + margin-right: var(--text-padding); + margin-top: calc(-2.5 * var(--text-padding)); +} + +.infobar.memberProfile h1 { + color: var(--member-color, var(--text-bright)); +} + .infobar + p { margin-top: 0; } + +.infobar.memberProfile { + margin-bottom: 42px; +} |