diff options
| author | winter | 2025-01-13 21:12:22 +0000 |
|---|---|---|
| committer | winter | 2025-01-13 21:12:22 +0000 |
| commit | c298fa4d4cc4277c1f7c2a54d9fb98b395b9bc12 (patch) | |
| tree | 4037c3bfc88a585085a3db5c0c8455fad702eff5 /static/profile.css | |
| parent | 5e5b7c5d6d4bbdd4acaea7d4b6c5be1e27b04a86 (diff) | |
tidy stylesheets and improve replies styling
Diffstat (limited to 'static/profile.css')
| -rw-r--r-- | static/profile.css | 26 |
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; + } + } +} |
