mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 09:29:58 +01:00
26 lines
749 B
SCSS
26 lines
749 B
SCSS
// ===========================================================================
|
|
// THEMES
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// TEXT SHADOWS
|
|
|
|
@mixin text-shadow-dark($color-setting: $shadow-color) {
|
|
@include text-shadow(0 -1px 1px $color-setting);
|
|
}
|
|
|
|
@mixin text-shadow-light($color-setting: $highlight-color) {
|
|
@include text-shadow(0 1px 1px $color-setting);
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
// BOX SHADOWS
|
|
|
|
@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);
|
|
} |