From 0c6014079edaf29adfeb841885ad9e58b690d62b Mon Sep 17 00:00:00 2001 From: REEMSHANAB <72611638+REEMSHANAB@users.noreply.github.com> Date: Tue, 13 Oct 2020 21:20:37 -0400 Subject: [PATCH] Style Sheet Created a style sheet that adds color and depth --- Style sheet | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 Style sheet diff --git a/Style sheet b/Style sheet new file mode 100644 index 0000000..9222220 --- /dev/null +++ b/Style sheet @@ -0,0 +1,38 @@ +body, +html { + height: 100%; + font-size: 20px; + font-family: 'Raleway', sans-serif; + /* Change this to your font */ + line-height: 1.5em; + margin: 0em; + color: white; + background-color: #5A1C85; + box-sizing: border-box; +} + +h1 { + letter-spacing: 3px; + font-size: 10px; + font-family: 'Roboto Mono', monospace; /* Change this to your font */ + color: white; + text-align: center; +} + +h2 { + letter-spacing: 3px; + font-size: 25px; + font-family: "Roboto Mono", sans-serif; /* Change this to your font */ + color: #43d6b9ff; + text-align: center; + line-height: 1.3em; +} + +a{ + color: #43d6b9ff; + text-decoration: none; +} + +a:hover { + color: #f4364c; +}