diff options
author | Matt Arnold | 2025-04-15 09:58:58 -0400 |
---|---|---|
committer | Matt Arnold | 2025-04-15 09:58:58 -0400 |
commit | e8880e73a23571acf47845b1e38292239c5d71b2 (patch) | |
tree | 0f12139f68f7dd99646d257bc3519744ba5b2f2e /static/style.css | |
parent | dc557895b1bd517bbdc2821a79f2be12624010d6 (diff) |
finally got different profiles/faccets to work.
Unsure if it was just the typo in the template or we really needed backend changes but belt and suspenders logic applies
Diffstat (limited to 'static/style.css')
-rw-r--r-- | static/style.css | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index 97b98f4..1868c63 100644 --- a/static/style.css +++ b/static/style.css @@ -131,4 +131,22 @@ footer { background: rgba(255, 255, 255, 0.8); border-radius: 10px; box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + display: flex +} + +.userbox { + /* Optional: control width */ + width: 200px; + border-top: 2px solid #fff; + border-left: 2px solid #fff; + border-right: 2px solid #888; + border-bottom: 2px solid #888; + padding: 10px; +} + +.post-content { + /* Optional: make this div fill remaining space */ + margin-left: 20px; + padding-right: 15%; + flex: 1; } \ No newline at end of file |