From 62cfd4f23993e04602aa15adf4fc71e6eb48c376 Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Thu, 27 Feb 2020 16:25:44 -0500 Subject: Beautify the homepage --- style.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..41ca896 --- /dev/null +++ b/style.css @@ -0,0 +1,20 @@ +h1::after { + display: block; + + width: 100%; + height: 3px; + + background-color: #bbb; + + content: ''; +} + +a { + color: lightgray; + text-decoration: none; + transition-duration: 0.2s; +} + +a:hover { + color: black; +} \ No newline at end of file -- cgit v1.2.3