summary refs log tree commit diff
path: root/styles/about.module.css
diff options
context:
space:
mode:
Diffstat (limited to 'styles/about.module.css')
-rw-r--r--styles/about.module.css62
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;
+}