From 4596ec1807612e77336a345d21708060a21d976e Mon Sep 17 00:00:00 2001 From: GNUxeava Date: Fri, 18 Mar 2022 10:44:36 +0530 Subject: [PATCH] add barebones css --- style.css | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..5740899 --- /dev/null +++ b/style.css @@ -0,0 +1,13 @@ +@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@800&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@600&display=swap'); +@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap'); + +html { + height: 100%; +} + +body { + background-image: linear-gradient(135deg, #266bff, #59cfa3); + background-repeat: no-repeat; + color: white; +}