Make input field static

This commit is contained in:
2020-12-13 17:25:27 +01:00
parent 3b0d0ec982
commit 6d83a513f1

View File

@@ -14,28 +14,6 @@ div.userLogin {
transform: translate(-50%, -50%); transform: translate(-50%, -50%);
} }
input.email_input {
background-color: transparent;
border: transparent;
border-bottom: 2px solid greenyellow;
color: #FFF;
font-size: xx-large;
width: fit-content;
}
input.password_input {
background-color: transparent;
border: transparent;
color: #FFF;
font-size: medium;
width: fit-content;
}
label {
color: #FFF;
display: block;
}
#signup_button { #signup_button {
display: block; display: block;
margin: auto; margin: auto;
@@ -51,3 +29,25 @@ label {
box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.25); box-shadow: 0 3px 5px 1px rgba(0, 0, 0, 0.25);
text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.2); text-shadow: 0 -2px 0 rgba(0, 0, 0, 0.25), 0 1px 0 rgba(255, 255, 255, 0.2);
} }
input.email_input {
background-color: transparent;
border: transparent;
border-bottom: 2px solid greenyellow;
color: #FFF;
font-size: xx-large;
width: 500px;
}
input.password_input {
background-color: transparent;
border: transparent;
color: #FFF;
font-size: medium;
width: fit-content;
}
label {
color: #FFF;
display: block;
}