Fade Lift
Appear and lift slightly
Preview
HTML
<article>
<h1>Lift</h1>
<p>Enter, then hover.</p>
</article>
CSS
:root {
--ink: #241c16;
--paper: #fffaf1;
--accent: #d4552b;
--accent-2: #4338ca;
--on-accent: #fff;
--muted: #6a6156;
--line: #d7ccb8;
--chip: #efe6d6;
}
@keyframes lift-in {
from { opacity: 0; transform: translateY(10px); }
to { opacity: 1; transform: none; }
}
article {
min-width: 12rem;
padding: 1.2rem;
border-radius: 1.1rem;
background: var(--paper);
box-shadow: 0 16px 32px rgb(from var(--ink) r g b / 10%);
animation: lift-in 500ms ease both;
}
article:hover {
transform: translateY(-6px);
}
h1, p { margin: 0; }