aboutsummaryrefslogtreecommitdiffhomepage
path: root/static/profile.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/profile.css')
-rw-r--r--static/profile.css26
1 files changed, 26 insertions, 0 deletions
diff --git a/static/profile.css b/static/profile.css
new file mode 100644
index 0000000..028c69c
--- /dev/null
+++ b/static/profile.css
@@ -0,0 +1,26 @@
+.fullProfile {
+ border-radius: 8px;
+ margin: 16px;
+ padding: 16px;
+ border: 1px solid #23f4;
+ background: #e6eaff44;
+
+ .basicInfo {
+ display: grid;
+ grid-template-columns: max-content 1fr max-content;
+ gap: 16px;
+
+ img.avatar {
+ width: 96px;
+ aspect-ratio: 1;
+ }
+ .displayName {
+ font-size: 16pt;
+ font-weight: bold;
+ }
+ .handle,
+ .joinedDate {
+ font-size: 10pt;
+ }
+ }
+}