test-crud
Version:
es una prueba acerca de como publicar un package name
81 lines (70 loc) • 1.45 kB
CSS
label.inputLabel {
color: var(--dark);
font-weight: 500;
font-size: 16px;
display: inline-block;
padding-left: 0.5rem;
margin-bottom: 0.3rem;
}
input.inputField {
border: none;
background: none;
outline: none ;
width: 100%;
}
.inputError {
color: #f56e51;
padding: 0.5rem;
}
.inputContainer {
display: flex;
gap: 1rem;
border-radius: 16px;
padding: 18px 16px;
border: none;
font-style: normal;
font-size: 16px;
line-height: 16px;
color: #787878;
width: 100%;
background-color: #f7f7f7;
align-items: center;
-webkit-transition: border-color 1.5s ease-out;
-moz-transition: border-color 1.5s ease-out;
-o-transition: border-color 1.5s ease-out;
transition: border-color 1.5s ease-out;
}
.right-icon {
animation-name: ease-in;
animation-duration: 1.5s ;
animation-timing-function: linear ;
}
@keyframes ease-in {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.inputContainer.error {
border: solid 1px #f56e51;
background-color: white;
}
.inputContainer.error:focus-within {
border: solid 1px #f56e51;
}
.inputContainer.success {
border: solid 1px #5aa879;
background-color: white;
background-size: 24px;
color: #5aa879;
}
.inputContainer.success:focus-within {
border: solid 1px #5aa879;
}
.inputContainer:focus-within {
background: #ffffff;
border: 1px solid #2e4789;
box-shadow: 4px 4px 0px rgba(46, 71, 137, 0.2);
}