From 1ce5dfc69194c80459fb66f66d02b4493ffff5ce Mon Sep 17 00:00:00 2001 From: Samuel Degueldre Date: Tue, 16 Jul 2019 11:02:42 +0200 Subject: [PATCH] Refactor css into separate file --- src/index.html | 9 +-------- src/style.css | 6 ++++++ 2 files changed, 7 insertions(+), 8 deletions(-) create mode 100644 src/style.css diff --git a/src/index.html b/src/index.html index d744a77..2282838 100644 --- a/src/index.html +++ b/src/index.html @@ -2,16 +2,9 @@ + - diff --git a/src/style.css b/src/style.css new file mode 100644 index 0000000..2540dcb --- /dev/null +++ b/src/style.css @@ -0,0 +1,6 @@ +html, body { + margin: 0; + padding: 0; + display: flex; + background: linear-gradient(to bottom left, #222, black); +}