From 633ad53a578699e6c074cbf6da67263dd77ad4a1 Mon Sep 17 00:00:00 2001 From: Daniel Murphy Date: Wed, 5 Jan 2022 13:24:41 -0500 Subject: [PATCH] Add initial style.css --- grid/01-grid-layout-1/style.css | 39 +++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 grid/01-grid-layout-1/style.css diff --git a/grid/01-grid-layout-1/style.css b/grid/01-grid-layout-1/style.css new file mode 100644 index 0000000..1c4478d --- /dev/null +++ b/grid/01-grid-layout-1/style.css @@ -0,0 +1,39 @@ +.container { + text-align: center; +} + +.container div { + padding: 15px; + font-size: 32px; + font-family: Helvetica; + font-weight: bold; + color: white; + border-radius: 15px; +} + +.header { + background-color: #FFDE22; +} + +.sidebar { + background-color: #FF7755; +} + +.nav { + background-color: #00DDFF; +} + +.article { + background-color: #bccbde; +} + +.article p { + font-size: 18px; + font-family: sans-serif; + color: white; + text-align: left; +} + +.footer { + background-color: #393f4d; +}