diff options
author | r <r@freesoftwareextremist.com> | 2023-10-01 13:04:07 +0000 |
---|---|---|
committer | r <r@freesoftwareextremist.com> | 2023-10-01 13:04:07 +0000 |
commit | 81bdc7c705d5d21f62927167d5b2c8e4932c9570 (patch) | |
tree | 8bdd670af920ac0541391366b5711462d9df0fab /static | |
parent | 8e3999fc3d9761f9ce71c35a7154a77c251caa66 (diff) | |
download | bloat-81bdc7c705d5d21f62927167d5b2c8e4932c9570.tar.gz bloat-81bdc7c705d5d21f62927167d5b2c8e4932c9570.zip |
Add profile edit page
Diffstat (limited to 'static')
-rw-r--r-- | static/style.css | 46 |
1 files changed, 42 insertions, 4 deletions
diff --git a/static/style.css b/static/style.css index 21d8bc0..28683e7 100644 --- a/static/style.css +++ b/static/style.css @@ -163,15 +163,14 @@ textarea { padding: 4px; font-size: 11pt; font-family: initial; + box-sizing: border-box; } .post-content { - box-sizing: border-box; width: 100%; } -#css { - box-sizing: border-box; +#css, #bio { max-width: 100%; } @@ -434,6 +433,10 @@ img.emoji { margin-right: 2px; } +.profile-edit-link { + font-size: 8pt; +} + .user-list-item { overflow: auto; margin: 0 0 4px 0; @@ -589,6 +592,41 @@ kbd { color: #789922; } +.profile-form { + margin: 0 4px; +} + +.profile-form-field { + margin: 8px 0; +} + +.profile-avatar { + height: 96px; + width: 96px; + object-fit: contain; +} + +.profile-banner { + height: 120px; +} + +.block-label, +.profile-delete, +.profile-field, +.profile-field input { + margin: 0 0 4px 0; +} + +.profile-form input[type=text] { + width: 320px; + max-width: 100%; + box-sizing: border-box; +} + +#bio { + width: 644px; +} + .dark { background-color: #222222; background-image: none; @@ -599,7 +637,7 @@ kbd { color: #81a2be; } -.dark textarea { +.dark .post-content { background-color: #333333; border: 1px solid #444444; color: #eaeaea; |