Added animations + new color settings

This commit is contained in:
2018-05-06 10:52:06 +10:00
parent 5ef6da0dcd
commit 4b8fc6e8b9
2 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,18 @@
/*
* Animation
* Animation settings.
*
* Version:
* 1.0.0 - 2018/02/23
*/
$s-animation--ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
$s-animation--ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
$s-animation--ease-in-out-quint: cubic-bezier(0.86, 0, 0.07, 1);
$s-animation--ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
$s-animation--ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
$s-animation--ease-in-out-quart: cubic-bezier(0.77, 0, 0.175, 1);
$s-animation--ease-in-out: $s-animation--ease-in-out-quart;
$s-animation--ease-in: $s-animation--ease-in-quart;
$s-animation--ease-out: $s-animation--ease-out-quart;

View File

@ -28,3 +28,5 @@ $s-color--link-hover: lighten($s-color--link, 10%);
$s-color--navbar: rgba(0, 0, 0, 0.75); $s-color--navbar: rgba(0, 0, 0, 0.75);
$s-color--navbar__text: white; $s-color--navbar__text: white;
$s-color--navbar__text-hover: #CCC; $s-color--navbar__text-hover: #CCC;
$s-color--navbar__bar-hover: $s-color--pastel-blue;
$s-color--navbar__bar-active: $s-color--pastel-green;