PageRenderTime 27ms CodeModel.GetById 20ms app.highlight 6ms RepoModel.GetById 1ms app.codeStats 0ms

/sass/recipes/ui/border/_bevel.scss

https://bitbucket.org/decore/my-svadba.ru
Sass | 9 lines | 7 code | 1 blank | 1 comment | 0 complexity | fa2596895eb7f9090263a6c4d8836bb9 MD5 | raw file
1// @todo Remove in .4
2
3@mixin ui-border-bevel($width, $color, $variation: 15%)
4{
5    @warn 'ui-border-bevel has been deprecated. Please use effects/bevel mixins instead';
6    border: $width solid $color;
7    border-top-color: lighten($color, $variation);
8    border-bottom-color: darken($color, $variation);
9}