summaryrefslogtreecommitdiff
path: root/web/source
diff options
context:
space:
mode:
Diffstat (limited to 'web/source')
-rw-r--r--web/source/css/base.css51
1 files changed, 51 insertions, 0 deletions
diff --git a/web/source/css/base.css b/web/source/css/base.css
index d9b3e170e..29dafef84 100644
--- a/web/source/css/base.css
+++ b/web/source/css/base.css
@@ -502,6 +502,57 @@ label {
}
}
+.about {
+ display: flex;
+ flex-direction: column;
+ gap: 1rem;
+
+ h2 {
+ margin: 0.5rem 0;
+ }
+
+ ul {
+ margin-bottom: 0;
+ }
+
+ .contact-account-card {
+ /* display: inline-grid;
+ grid-template-columns: 4rem auto;
+ grid-template-rows: 4rem;
+ gap: 1rem;
+ padding: 0.5rem; */
+ display: inline-grid;
+ grid-template-columns: auto 1fr;
+ grid-template-rows: auto auto;
+ text-decoration: none;
+ gap: 0.5rem 1rem;
+ border-radius: $br;
+ padding: 0.5rem;
+ min-width: 40%;
+ margin-bottom: 0.3rem;
+
+ background: $list-entry-bg;
+
+ &:hover {
+ background: $list-entry-alternate-bg;
+ }
+
+ h3 {
+ align-self: end;
+ margin: 0;
+ color: $fg;
+ }
+
+ img.avatar {
+ border-radius: 0.5rem;
+ width: 5rem;
+ height: 5rem;
+ object-fit: cover;
+ grid-row: 1 / span 2;
+ }
+ }
+}
+
@media screen and (max-width: 30rem) {
.domain-blocklist .entry {
grid-template-columns: 1fr;