Added shadows, moved variables around

This commit is contained in:
2018-05-17 17:36:00 +10:00
parent 78a97c83a6
commit c526e3045d
8 changed files with 29 additions and 5 deletions

View File

@ -53,7 +53,7 @@ $t-input--style-dp__padding: 1em;
background: $s-color--input-default__bottom;
border: $s-color--input-default__border;
border-radius: $t-input--style-dp__padding / 3;
//border-radius: $t-input--style-dp__padding / 3;
//Background Shadow (3D effect)
@include t-box-shadow(
@ -76,7 +76,7 @@ $t-input--style-dp__padding: 1em;
background: $s-color--input-default__top;
border: $s-color--input-default__border;
transition: all 0.1s $s-animation--ease-out;
border-radius: $t-input--style-dp__padding / 3;
//border-radius: $t-input--style-dp__padding / 3;
//Shine effect
@include t-box-shadow(

View File

@ -0,0 +1,17 @@
/*
* domsPlace Shadows
* Standard Shadows used throughout domsPlace
*
* Dependencies:
* styles/settings/colors.scss
* styles/tools/_box-shadow.scss
*/
%t-dp--shadow {
@include t-box-shadow(
1em,
1em,
0,
0,
$s-color--shadow
);
}