Fix whitespace

This commit is contained in:
Cameron Reed 2024-10-01 13:32:55 -06:00
parent 317834e446
commit faa72ee069
3 changed files with 27 additions and 27 deletions

View File

@ -52,16 +52,16 @@ p, a, .normal-text {
border-radius: 10px;
margin: 20px;
background-color: #27272750;
color: white;
color: white;
}
.login-btn {
padding: 10px 20px;
text-decoration: none;
border-radius: 6px;
font-size: 1rem;
cursor: pointer;
margin: 35px 0 25px 0;
padding: 10px 20px;
text-decoration: none;
border-radius: 6px;
font-size: 1rem;
cursor: pointer;
margin: 35px 0 25px 0;
background-color: green;
color: white;

View File

@ -37,16 +37,16 @@ input::placeholder {
}
button {
padding: 10px 20px;
text-decoration: none;
border: 2px solid;
border-radius: 6px;
box-shadow: black 2px 2px 3px 0;
background-color: white;
font-size: 1rem;
cursor: pointer;
margin: 35px 0 25px 0;
color: blue;
padding: 10px 20px;
text-decoration: none;
border: 2px solid;
border-radius: 6px;
box-shadow: black 2px 2px 3px 0;
background-color: white;
font-size: 1rem;
cursor: pointer;
margin: 35px 0 25px 0;
color: blue;
}
a {

View File

@ -180,16 +180,16 @@ nav {
}
form {
position: absolute;
left: 50%;
top: 50%;
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
border: 2px solid black;
border-radius: 10px;
width: min(calc(100vw - 110px), 900px);
height: min(calc(100lvh - 250px), 440px);
background: white;
box-shadow: black 5px 5px 5px -3px;
border: 2px solid black;
border-radius: 10px;
width: min(calc(100vw - 110px), 900px);
height: min(calc(100lvh - 250px), 440px);
background: white;
box-shadow: black 5px 5px 5px -3px;
visibility: hidden;
opacity: 0;
transition: visibility 1s, top .5s, opacity .5s linear;
@ -199,7 +199,7 @@ form {
}
form:target {
top: 48%;
top: 48%;
visibility: visible;
opacity: 1;
transition: visibility 0s, top .5s, opacity .5s linear;