diff options
| author | Kyle Gunger <corechg@gmail.com> | 2020-02-27 16:25:44 -0500 |
|---|---|---|
| committer | Kyle Gunger <corechg@gmail.com> | 2020-02-27 16:25:44 -0500 |
| commit | 62cfd4f23993e04602aa15adf4fc71e6eb48c376 (patch) | |
| tree | 2cf5db293d07315b9586c29e49390b5d0b6a7ce1 | |
| parent | 00c14a7cb122292d7ec87a817a9a3eb169ee37d9 (diff) | |
Beautify the homepage
| -rw-r--r-- | style.css | 20 |
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 |