From 19d8a7ef8b7bae7600811461407ad46662154212 Mon Sep 17 00:00:00 2001 From: "fred.boniface" Date: Sun, 30 Oct 2022 19:35:28 +0000 Subject: [PATCH] Adjust .content style - p text-align and a color --- style/new_style.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/style/new_style.css b/style/new_style.css index 69b5278..f84c6ea 100644 --- a/style/new_style.css +++ b/style/new_style.css @@ -5,6 +5,7 @@ --overlay-color: #2f4f4fb8; --main-text-color: azure; --link-color: cyan; + --link-visited-color: rgb(189, 0, 189); } /* FONTS */ @font-face { @@ -198,10 +199,20 @@ body { margin: auto; margin-top: 20px; margin-bottom: 40px; + text-align: center; color: var(--main-text-color); font-family: oxygen, sans-serif; font-weight: normal; } +.content a { + color: var(--link-color) +} +.content a:visited { + color: var(--link-color) +} +.content a:hover { + color: var(--link-visited-color) +} /* FOOTER */ footer { position: relative;