/*! * Copyright (c) 2015 - 2020 Molkobain. * * This file is part of licensed extension. * * Use of this extension is bound by the license you purchased. A license grants you a non-exclusive and non-transferable right to use and incorporate the item in your personal or commercial projects. There are several licenses available (see https://www.molkobain.com/usage-licenses/ for more informations) */ /* Box shadows */ /* Note: Variables are deprecated and will be removed soon, use mixins instead */ $mhf-box-shadow-lightest: 0 1px 1px rgba(0, 0, 0, 0.15) !default; $mhf-box-shadow-lighter: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24) !default; $mhf-box-shadow-light: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23) !default; $mhf-box-shadow-regular: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23) !default; $mhf-box-shadow-strong: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22) !default; $mhf-box-shadow-stronger: 0 19px 38px rgba(0,0,0,0.30), 0 15px 12px rgba(0,0,0,0.22) !default; $mhf-box-shadow-transition: all 0.3s cubic-bezier(.25,.8,.25,1) !default; @mixin mhf-box-shadow-lightest{ box-shadow: $mhf-box-shadow-lightest; } @mixin mhf-box-shadow-lighter{ box-shadow: $mhf-box-shadow-lighter; } @mixin mhf-box-shadow-light{ box-shadow: $mhf-box-shadow-light; } @mixin mhf-box-shadow-regular{ box-shadow: $mhf-box-shadow-regular; } @mixin mhf-box-shadow-strong{ box-shadow: $mhf-box-shadow-strong; } @mixin mhf-box-shadow-stronger{ box-shadow: $mhf-box-shadow-stronger; }