Gradients
Linear, radial, and conic mixes with angles and stop tips.
Layered blend
- Palette through light/shadow balance
- Stop grids with transparency
- Dual-layer backgrounds for clarity
CSS Guide
Documentation page with copyable snippets and live previews so you can see how gradients, shadow stacks, and keyframes work. Quick links jump into focused subpages for each effect type.
Subpages
Each subpage is a concise how-to: a checklist, visual examples, and minimal code you can copy into CSS-Zone.
Linear, radial, and conic mixes with angles and stop tips.
Layered blend
Multi-shadow stacks without murky edges.
Layered shadow
Keyframes with easing, delays, and stagger notes.
Micro-motion
Basics
Key reminders for clean, predictable styles in production.
Keep flow stable and avoid layout shifts.
Readable UI on light/dark themes.
Ship smooth motion and avoid layout trashing.
Practice
Ready patterns — use as-is or tweak nearby in the generator.
Contrast background + soft multi-shadow and subtle depth.
background: linear-gradient(135deg, #6ee7ff, #7c3aed);
box-shadow: 0 20px 60px rgba(124, 58, 237, 0.28),
0 8px 24px rgba(10, 10, 10, 0.25);TranslateX with seamless repeat and adjustable speed.
.marquee {
display: flex;
gap: 2rem;
animation: ticker 14s linear infinite;
}
@keyframes ticker {
from { transform: translateX(0); }
to { transform: translateX(-50%); }
}Two layers (scale + blur) for a soft focus highlight.
@keyframes pulse {
0% { transform: scale(1); opacity: .9; }
70% { transform: scale(1.25); opacity: 0; }
100% { transform: scale(1); opacity: 0; }
}
.pulse::after { animation-delay: .6s; }