summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Gunger <corechg@gmail.com>2020-02-27 16:25:44 -0500
committerKyle Gunger <corechg@gmail.com>2020-02-27 16:25:44 -0500
commit62cfd4f23993e04602aa15adf4fc71e6eb48c376 (patch)
tree2cf5db293d07315b9586c29e49390b5d0b6a7ce1
parent00c14a7cb122292d7ec87a817a9a3eb169ee37d9 (diff)
Beautify the homepage
-rw-r--r--style.css20
1 files changed, 20 insertions, 0 deletions
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