mirror of
https://github.com/sergi0g/cup.git
synced 2025-11-16 00:53:47 -05:00
27 lines
397 B
CSS
27 lines
397 B
CSS
article:has(.home) {
|
|
padding-inline: 0;
|
|
padding-top: 0;
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
article div.x\:mt-16:last-child:empty {
|
|
margin-top: 0;
|
|
}
|
|
|
|
#hero {
|
|
animation-name: hero;
|
|
animation-duration: 1500ms;
|
|
animation-delay: 500ms;
|
|
animation-timing-function: ease-in-out;
|
|
animation-fill-mode: forwards;
|
|
}
|
|
|
|
@keyframes hero {
|
|
from {
|
|
translate: 0 8rem;
|
|
}
|
|
to {
|
|
translate: 0 0;
|
|
}
|
|
}
|