From 9e88f7db1cc18e86601ffe53d37adc47ddb10eb8 Mon Sep 17 00:00:00 2001 From: sweatshirt0 Date: Tue, 31 Jan 2023 19:12:53 -0500 Subject: [PATCH] login button hover effect; minor css changes. --- styles/styles.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/styles/styles.css b/styles/styles.css index b5a7cfe..626dda2 100644 --- a/styles/styles.css +++ b/styles/styles.css @@ -27,6 +27,7 @@ body { .login-wrapper { position: relative; + top: 15px; border: 1px solid black; width: 400px; padding-top: 15px; @@ -73,6 +74,11 @@ body { border-radius: 5px; } +.login-button:hover { + cursor: pointer; + top: -5px; +} + .about-content { font-size: 1rem; }