For use in overlapping regions, a drop-shadow is useful to create a visual separation.
%a__paper-shadow--raised-bottom {
box-shadow: $b__paper-shadow--raised-bottom;
}%a__paper-shadow--raised-right {
box-shadow: $b__paper-shadow--raised-right;
}For use in overlapping regions, a drop-shadow is useful to create a visual separation. This actual visual effect is the same as a Raised Bottom. As I don't believe you should mix shadow directions, there are no oposites of this effect.
%a__paper-shadow--declined-top {
box-shadow: $b__paper-shadow--declined-top;
}For use in overlapping regions, a drop-shadow is useful to create a visual separation. This visual effect equals the raised right effect. As I don't believe you should mix shadow directions, there are no oposites of this effect.
%a__paper-shadow--declined-left {
box-shadow: $b__paper-shadow--declined-left;
}This is used for raised components, such as buttons. You should check the raised button for it's use.
%a__paper-shadow--raised {
box-shadow:
0 0 ($b__shadow--size / 2) $b__shadow--color,
0 ($b__shadow--size / 1.5) ($b__shadow--size * 1) $b__shadow--color;
}This is used for raised components, such as buttons. You should check the floating action for it's use.
%a__paper-shadow--floating {
box-shadow:
0 0 ($b__shadow--size / 2) $b__shadow--color,
0 ($b__shadow--size * 2) ($b__shadow--size * 2) $b__shadow--color;
}Because I like to give some elements a little more of a material look, this is an embedded png of paper fibres. Works best with medium dark background colours.
%a__paper-fibres {
background-image: url('data:image/png;base64,...);
background-repeat: repeat;
}