From 77d4a3ed44c502979c14d6d8f79e1a85162f3a86 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vitor=20Gon=C3=A7alves?= Date: Sat, 17 Jun 2023 03:11:51 -0300 Subject: [PATCH] feat: changed lots of stuff from the stylesheet; removed (temporary) the background image --- style.css | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/style.css b/style.css index 1a348e4..1b308b8 100644 --- a/style.css +++ b/style.css @@ -1,30 +1,38 @@ :root { - --default-background: #eeccff; + --root-background-color: #dddaec; + --default-background: #dddfff; + --accent-color: #61538d; } html { display: inline; - background-image: url("bg.jpg"); + /*background-image: url("bg.jpg"); background-position: center top; - background-attachment: scroll; - background-size: cover; + background-size: cover;*/ + background-color: var(--root-background-color); } body { font-family: Inconsolata, monospace; } +a { + color: var(--accent-color); + text-decoration: none; +} + .block { background-color: var(--default-background); + align-content: center; text-align: center; - padding: 0.8em; - margin: 1em 20% 1em 20%; + padding: 0.75rem 1rem; + margin: 1.175rem 25% auto; border-style: solid; } .text { text-align: left; - padding: 0px 20% 0px 20%; + padding: 0px 3em; }