summaryrefslogtreecommitdiff
path: root/static/css/club.css
diff options
context:
space:
mode:
authorElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-04-21 18:46:40 -0700
committerElizabeth Hunt <elizabeth.hunt@simponic.xyz>2024-04-21 18:46:40 -0700
commitd14605d1388aaa7cc9ef1c230eae5ba14c9cef44 (patch)
tree59fcda0fae7899ca577eed1f72d89bff17d5ad5d /static/css/club.css
downloadbackup-notify-d14605d1388aaa7cc9ef1c230eae5ba14c9cef44.tar.gz
backup-notify-d14605d1388aaa7cc9ef1c230eae5ba14c9cef44.zip
initial commit
Diffstat (limited to 'static/css/club.css')
-rw-r--r--static/css/club.css48
1 files changed, 48 insertions, 0 deletions
diff --git a/static/css/club.css b/static/css/club.css
new file mode 100644
index 0000000..747f2d0
--- /dev/null
+++ b/static/css/club.css
@@ -0,0 +1,48 @@
+.club-members {
+ display: flex;
+ flex-direction: row;
+ flex-wrap: wrap;
+ justify-content: left;
+ gap: 20px;
+ padding: 20px;
+}
+
+.club-member {
+ flex: 1;
+ background-color: var(--background-color-2);
+ border: 1px solid var(--border-color);
+ padding: 10px;
+ display: flex;
+ flex-direction: row;
+ align-items: center;
+ justify-content: space-around;
+ gap: 10px;
+ max-width: 600px;
+ min-width: 400px;
+ line-break: anywhere;
+}
+
+.club-bio {
+ white-space: pre-wrap;
+ border-top: 1px solid var(--border-color);
+}
+
+.avatar {
+ flex: 1;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+}
+
+.avatar div {
+ background-position: center center;
+ background-repeat: no-repeat;
+ background-size: cover;
+ width: 120px;
+ height: 120px;
+ border-radius: 25%;
+}
+
+.about {
+ flex: 2;
+}