Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 647 Bytes

README.md

File metadata and controls

21 lines (14 loc) · 647 Bytes

SASS shadows without images

View demo

Based on CSS Drop Shadows by Nicolas Gallagher

What is this?

A bunch of CSS classes and SASS mixins for creating resolution-independent crisp and visually appealing shadows without using any images.

Can I see a demo?

Yup, check out the 10 various shadow types here: http://ahrengot.github.com/sass-dropshadows/

How do I use these?

As a SASS mixin:

div {
    @include shadow('curved');
}

Using the CSS class names:

<div class="shadow curved"></div>