From e40ac11434d28e18014f750bc873d273eacbf4f6 Mon Sep 17 00:00:00 2001 From: Geoff Doty Date: Sat, 23 Oct 2021 14:48:20 -0400 Subject: [PATCH] replace background-color w/ background --- src/grayscale.css | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/grayscale.css b/src/grayscale.css index 108f2d8..5a0978c 100644 --- a/src/grayscale.css +++ b/src/grayscale.css @@ -75,7 +75,7 @@ ul,ol,li { } table { - background-color: var(--bg); + background: var(--bg); border-collapse: collapse; border-spacing: 0; width: 100%; @@ -155,7 +155,7 @@ section { article { padding: var(--space); - background-color: var(--light); + background: var(--light); } label { @@ -171,7 +171,7 @@ input { outline: none; box-sizing: border-box; font-size: var(--size); - background-color: var(--bg); + background: var(--bg); color: var(--fg); width: 100%; height: calc(var(--size) * 3);