Rev 3488 | AutorÃa | Comparar con el anterior | Ultima modificación | Ver Log |
.searchBox {
padding: 2rem;
background-color: $bg-color;
position: relative;
z-index: 999;
form {
display: flex;
align-items: center;
}
input {
width: 100%;
padding: 0.5rem 1rem;
border: none;
border-radius: 30px 0 0 30px;
height: 40px;
}
button {
font-size: 1.5rem;
height: 40px;
background-color: $bg-color;
border-radius: 0 30px 30px 0;
padding-right: 0.5rem;
}
}
.backdrop {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.205);
z-index: 900;
}
.fadeIn {
transform-origin: top;
animation: fadeIn 0.3s;
}
.fadeOut {
transform-origin: top;
animation: fadeOut 0.3s;
}
@keyframes fadeIn {
0% {
transform: scaleY(0);
}
100% {
transform: scaleY(1);
}
}
@keyframes fadeOut {
0% {
transform: scaleY(1);
}
100% {
transform: scaleY(0);
}
}