css shadow for some components

This commit is contained in:
Dmitriy Zaporozhets 2012-02-20 19:59:39 +02:00
parent 5f4a7c3e04
commit 3a33795f2b
3 changed files with 15 additions and 8 deletions

View file

@ -24,6 +24,13 @@ $hover: #FDF5D9;
/** MIXINS **/
@mixin shade {
-moz-box-shadow: 0 0 3px #ddd;
-webkit-box-shadow: 0 0 3px #ddd;
box-shadow: 0 0 3px #ddd;
}
@mixin round-borders-bottom($radius) {
border-top: 1px solid #eaeaea;
-moz-border-radius-bottomright: $radius;