aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNatasha Moongrave <natasha@256phi.eu>2026-03-30 15:42:24 +0200
committerNatasha Moongrave <natasha@256phi.eu>2026-03-30 15:42:24 +0200
commitd489b3c262b83f15f6674b7bbcee9b615495833c (patch)
treecccaf3f9c1cc8b7ddb1717eb89db2a2b43bad44e
parent2c0332ff6d3621844764eb2f8cf2e14a545766d6 (diff)
Redid the team section to have better formatting and organization
-rw-r--r--src/style.css19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/style.css b/src/style.css
index 8a80bdb..b16696f 100644
--- a/src/style.css
+++ b/src/style.css
@@ -104,12 +104,31 @@ nav {
grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
}
+.members-grid-2 {
+ grid-template-columns: repeat(2, 1fr);
+ max-width: 400px;
+ margin: 0 auto 2rem;
+}
+
+.members-grid-4 {
+ grid-template-columns: repeat(4, 1fr);
+}
+
+.committee-card {
+ text-align: center;
+}
+
/* MEMBER */
+.member-card {
+ text-align: center;
+}
+
.member-avatar {
width: 80px;
height: 80px;
border-radius: 50%;
overflow: hidden;
+ margin: 0 auto;
}
.member-avatar img {