You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
661 B
43 lines
661 B
@keyframes show {
|
|
0% {
|
|
transform: scale(0);
|
|
max-height: 0;
|
|
opacity: 0;
|
|
display: hidden;
|
|
padding-top: 0;
|
|
}
|
|
50% {
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
max-height: 500px;
|
|
display: block;
|
|
padding-top: 1em;
|
|
}
|
|
}
|
|
|
|
@keyframes hide {
|
|
0% {
|
|
max-height: 500px;
|
|
display: block;
|
|
padding-top: 1em;
|
|
}
|
|
50% {
|
|
transform: scale(1);
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
transform: scale(0);
|
|
max-height: 0;
|
|
opacity: 0;
|
|
display: hidden;
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
.searchresults {
|
|
overflow: hidden;
|
|
transform-origin: top left;
|
|
}
|