9 lines
327 B
SCSS
9 lines
327 B
SCSS
|
// SHADOWS
|
||
|
// Define how looks the shadows and the relief effects
|
||
|
|
||
|
$large-shadow: 0px 2px 4px rgba(0, 0, 0, 0);
|
||
|
$narrow-shadow: 0px 1px 2px rgba(0, 0, 0, 0);
|
||
|
$inset-shadow: inset 0px -2px 0px rgba(0, 0, 0, 0);
|
||
|
$inset-shadow-inverted: inset 0px 2px 0px rgba(0, 0, 0, 0);
|
||
|
$inset-relief: inset 0px 2px 0px rgba(255, 255, 255, 0);
|