just some more work done

This commit is contained in:
Timothy Pidashev
2022-01-07 12:43:22 -08:00
parent 78c96c0aff
commit b26b405eca
6 changed files with 119 additions and 41 deletions

View File

@@ -198,7 +198,7 @@ html {
.blog:hover {
transform: scale(1.1);
cursor: pointer;
}
}
.blog__image {
margin-left: 2vw;
@@ -206,6 +206,75 @@ html {
width: 10vw;
}
/* Login */
#login-holder {
width: 50%;
height: 70%;
display: grid;
justify-items: center;
align-items: center;
background-color: grey;
border-radius: 7px;
box-shadow: 0px 0px 5px 2px black;
}
#login-error-msg-holder {
width: 100%;
height: 100%;
display: grid;
justify-items: center;
align-items: center;
}
#login-error-msg {
width: 23%;
text-align: center;
margin: 0;
padding: 5px;
font-size: 12px;
font-weight: bold;
color: #8a0000;
border: 1px solid #8a0000;
background-color: #e58f8f;
opacity: 0;
}
#error-msg-second-line {
display: block;
}
#login-form {
align-self: flex-start;
display: grid;
justify-items: center;
align-items: center;
}
.login-form-field::placeholder {
color: #3a3a3a;
}
.login-form-field {
border: none;
border-bottom: 1px solid #3a3a3a;
margin-bottom: 10px;
border-radius: 3px;
outline: none;
padding: 0px 0px 5px 5px;
}
#login-form-submit {
width: 100%;
padding: 7px;
border: none;
border-radius: 5px;
color: white;
font-weight: bold;
background-color: #3a3a3a;
cursor: pointer;
outline: none;
}
@media only screen and (max-width: 1024px) {
.hero__header {
font-size: 12vw;