landing page form signup button css patch and minor nav bar css patch; completed form css patch.

This commit is contained in:
sweatshirt0 2023-02-20 17:23:55 -05:00
parent 68f7e004a2
commit 08e75a79ba

View File

@ -13,6 +13,7 @@ body {
margin-left: 15px; margin-left: 15px;
margin-right: 15px; margin-right: 15px;
font-size: 1rem; font-size: 1rem;
font-weight: bold;
} }
.nav-wrapper a:hover { .nav-wrapper a:hover {
@ -56,7 +57,7 @@ body {
} }
.loggin-submit { .loggin-submit {
position: relative; position: relative;
display: flex; display: flex;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
@ -69,3 +70,19 @@ body {
color: #fff; color: #fff;
font-weight: bold; font-weight: bold;
} }
.signup-button {
position: relative;
display: flex;
margin-left: auto;
margin-right: auto;
justify-content: center;
width: 90%;
border: 1px solid lightgrey;
border-radius: 5px;
padding: 15px;
font-size: 1.1rem;
background-color: #4af626;
color: #111;
font-weight: bold;
}