Add option to set colors in config file

This commit is contained in:
Gregory Trolliet 2020-04-27 21:39:46 +02:00
parent 578125c659
commit 2aaf20406d
5 changed files with 32 additions and 19 deletions

View file

@ -1,8 +1,9 @@
/******************* Constants *******************/
:root {
--font-color: #000000;
--background-color: #FFFFFF;
--footer-color: grey;
--font-color: black;
--background-color: white;
--main-color: grey;
--font_above-color: white;
--max-width: 800px;
--max-width-full: 1000px;
@ -80,11 +81,11 @@ body {
/******************* Footer *******************/
.footer {
height: var(--footer-height-inline);
background-color: var(--footer-color);
color: white;
background-color: var(--main-color);
color: var(--font_above-color);
}
.footer .footer_link {
color: white;
color: var(--font_above-color);
}
.footer .footer_link:hover {
color: black;
@ -139,7 +140,7 @@ body {
width: 0%;
}
.navigation-item a::before {
background-color: black;
background-color: var(--main-color);
}
.navigation-item a:hover::before,
.navigation-item a:focus::before {