From ce7409684de44cabf0614196f5c8cc0dee8761ea Mon Sep 17 00:00:00 2001 From: Mystikfluu Date: Tue, 24 May 2022 19:57:03 +0200 Subject: [PATCH] centered and rounded posts --- css/posts.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/css/posts.css b/css/posts.css index caef756..cddab2a 100644 --- a/css/posts.css +++ b/css/posts.css @@ -65,3 +65,17 @@ a:link, a:visited { a:hover { color: red; } + +.post,.self { + width: 50%; + margin-left: 25%; + margin-right: 25%; + margin-top: 10px; + margin-bottom: 10px; + border-radius: 10px; +} + +#post-text, button { + border-radius: 5px; + resize: none; +}