From d4226fe4c04818747d5a753f119aa24d19432050 Mon Sep 17 00:00:00 2001 From: NikolaiDerDeutsche <152747946+NikolaiDerDeutsche@users.noreply.github.com> Date: Sun, 3 Dec 2023 00:07:16 +0100 Subject: [PATCH] Add files via upload --- global.css | 82 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 global.css diff --git a/global.css b/global.css new file mode 100644 index 0000000..609daba --- /dev/null +++ b/global.css @@ -0,0 +1,82 @@ +* { + margin: 0; + padding: 0; +} +body { + background: #404258; +} +button,input,textarea { + background: #6B728E; + resize: none; +} +form { + background: #474E68; +} +h1 { + text-align: center; + font-size: 72px; + margin-top: 10px; +} +h1,h3,p,a,input,textarea,button,label { + font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; + text-decoration: none; + color: #ffffff; + border: none; +} +.form-auth-wrap { + width: 50%; + margin: 10% auto; + padding: 10px; + font-size: 18px; +} +button { + font-size: 18px; + width: 150px; + height: 35px; + margin-top: 50px; +} +.form-auth-wrap input { + margin-top: 20px; + width: 50%; +} +.form-wrap-post { + padding: 10px; + width: 800px; + margin: 50px auto; + background: #474E68; +} +.form-wrap-post a { + text-decoration: underline; +} +.form-wrap-post textarea { + width: 100%; + height: 150px; + +} +.wrap-posts { + margin: 50px auto; + padding: 10px; + width: 800px; + background: #474E68; +} +.wrap-post-info { + display: flex; + align-items: center; + column-gap: 40px; +} +.wrap-post-info p { + opacity: 0.7; +} +.wrap-post-info a { + text-decoration: underline; +} +.wrap-post-content p { + margin-top: 15px; +} + +.info-user-wrap { + margin: 50px auto 100px; + padding: 10px; + width: 800px; + background: #474E68; +} \ No newline at end of file