diff options
author | Isaac Kim <snakeisaac@gmail.com> | 2022-08-24 08:50:37 -0700 |
---|---|---|
committer | Isaac Kim <snakeisaac@gmail.com> | 2022-08-24 08:50:37 -0700 |
commit | 67ac5e3d1be0af7a3637c71f68931d725202501f (patch) | |
tree | deabe5e92b8ce7b6176e0f822cb7d1bf77edc66b | |
parent | e949494742caf3dac11af41fab8610a80d060d71 (diff) |
Modify page styles
-rw-r--r-- | css/style.css | 11 | ||||
-rw-r--r-- | index.html | 2 |
2 files changed, 10 insertions, 3 deletions
diff --git a/css/style.css b/css/style.css index 66cdce5..3b668d1 100644 --- a/css/style.css +++ b/css/style.css @@ -1,5 +1,9 @@ /* Global Styling */ +html { + background-color: #ecfeda; +} + body { display: flex; color: #333; @@ -86,19 +90,22 @@ hr { .link::before { content: ''; - background-color: #ffdfb9c0; + background-color: #00000044; position: absolute; left: 0; bottom: -0.125rem; width: 100%; height: 2px; z-index: -1; - transition: all .3s ease-in-out; + transition: all .2s ease-out; } .link:hover::before { bottom: 0; height: 100%; + background-color: #00000011; + border-radius: 5%; + transform: scale(1.1); } @@ -21,7 +21,7 @@ <h3>Business Hours</h3> <p>T/Th 1-2:20pm</p> <p>CIT Room XXX</p> - <a href="https://discord.gg/XXXXXX">Zoom Link</a> + <div><a class="link" href="https://example.com">Zoom Link</a></div> </div> <hr /> <div id="nav-links"> |