2012-11-28 12:09:54 +01:00
|
|
|
// ===========================================================================
|
|
|
|
// THEMES
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2012-11-28 17:23:08 +01:00
|
|
|
// TEXT SHADOWS
|
|
|
|
|
2013-02-09 04:10:33 +01:00
|
|
|
@mixin text-shadow-dark($color-setting: $shadow-color) {
|
|
|
|
@include text-shadow(0 -1px 1px $color-setting);
|
|
|
|
}
|
2012-11-28 17:23:08 +01:00
|
|
|
|
2013-02-09 04:10:33 +01:00
|
|
|
@mixin text-shadow-light($color-setting: $highlight-color) {
|
|
|
|
@include text-shadow(0 1px 1px $color-setting);
|
2012-11-28 12:09:54 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-11-28 17:23:08 +01:00
|
|
|
// ---------------------------------------------------------------------------
|
2013-02-09 04:10:33 +01:00
|
|
|
// BOX SHADOWS
|
2012-11-28 12:09:54 +01:00
|
|
|
|
2013-02-09 04:10:33 +01:00
|
|
|
@mixin box-shadow-both($dark-color-setting: $shadow-color,
|
|
|
|
$light-color-setting: $highlight-color) {
|
|
|
|
@include box-shadow(0 1px 1px $light-color-setting inset,
|
|
|
|
0 1px 1px $dark-color-setting);
|
2012-11-28 12:09:54 +01:00
|
|
|
}
|