Cards

Beautiful card components with zero or minimal classes. Just use semantic HTML.

Classless Cards

Just use <article> - no classes needed!

Simple Card

This is a beautiful card using just the <article> element. No classes required!

Another Card

Cards automatically have shadows, hover effects, and proper spacing. Pure semantic HTML.

<article>
    <header>Card Title</header>
    <p>Card content goes here.</p>
    <footer>
        <button>Action</button>
    </footer>
</article>

Glass Effect

Add a single .glass modifier class for glassmorphism.

Glass Card

Beautiful frosted glass effect with backdrop blur. Perfect for colorful backgrounds.

Transparent Beauty

One class does it all. Clean and elegant.

<article class="glass">
    <header>Glass Card</header>
    <p>Content here...</p>
</article>

Glow Effect

Add .glow for a subtle purple glow on hover.

Glow Card

Hover over me to see the glow effect. Great for interactive elements.

<article class="glow">
    ...
</article>

Gradient Background

Use .gradient for a vibrant gradient background.

Gradient Card

Eye-catching gradient from purple to pink. Text automatically becomes white.

<article class="gradient">
    ...
</article>

Combining Modifiers

Mix and match modifiers for unique effects.

Glass + Glow

Combine multiple effects with simple class names.

<article class="glass glow">
    ...
</article>