Catpow SCSS

background image

gradient

グラデーションを作成します。
scss
@import 'catpow';

@include gradient(());
css
background-image: -webkit-linear-gradient(bottom,  #888);
background-image: -moz-linear-gradient(bottom,  #888);
background-image: -ms-linear-gradient(bottom,  #888);
background-image: -o-linear-gradient(bottom,  #888);
background-image: linear-gradient(180deg,  #888);