lychee/src/styles/_etc.scss
Tobias Reich 287917ebc9 New dialog system (WIP)
+ Added vars for shadows
+ Removed ctrl-modifer (#288)
2015-01-09 14:34:38 +01:00

25 lines
543 B
SCSS

/**
* @copyright 2014 by Tobias Reich
*/
/* Functions ------------------------------------------------*/
@function black($opacity) {
@return rgba(0, 0, 0, $opacity);
}
@function white($opacity) {
@return rgba(255, 255, 255, $opacity);
}
/* Vars ------------------------------------------------*/
// Properties
$shadowLight: 0 -1px 0 black(.1);
$shadow: 0 -1px 0 black(.2);
// Colors
$colorBlue: #2293EC;
$colorRed: #d92c34;
// Animations
$timing: cubic-bezier(.51, .92, .24, 1);
$timingBounce: cubic-bezier(.51, .92, .24, 1.15);