From d8eff8373868bd763ad10fb7a3ea8110916f4b21 Mon Sep 17 00:00:00 2001 From: Nicolas Hoizey Date: Mon, 16 Jul 2018 13:10:38 +0200 Subject: [PATCH 1/2] Set default text and background colours Some elements in the design have text colour without background colour. Setting a global background colour should be enough with current text colours. I wonder however if `var(--white)` is really necessary, instead of `white`. --- css/index.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/css/index.css b/css/index.css index dbe0741..87cdb53 100644 --- a/css/index.css +++ b/css/index.css @@ -16,6 +16,8 @@ body { padding: 0; margin: 0; font-family: sans-serif; + color: var(--darkgrey); + background-color: var(--white); } p:last-child { margin-bottom: 0; @@ -200,4 +202,4 @@ a[href].direct-link:focus:visited, :hover > a[href].direct-link, :hover > a[href].direct-link:visited { color: #aaa; -} \ No newline at end of file +} From 253c374596836d58045bea854ec65532931ce436 Mon Sep 17 00:00:00 2001 From: Nicolas Hoizey Date: Mon, 16 Jul 2018 13:19:33 +0200 Subject: [PATCH 2/2] Typo gray != grey --- css/index.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/css/index.css b/css/index.css index 87cdb53..50fe012 100644 --- a/css/index.css +++ b/css/index.css @@ -16,7 +16,7 @@ body { padding: 0; margin: 0; font-family: sans-serif; - color: var(--darkgrey); + color: var(--darkgray); background-color: var(--white); } p:last-child {