WEBアイコンの呼び出し

@mixin と @include で呼び出します。

設定

@mixin icon($content:"\e901", $color:#333, $size:1em) {
	font-family: フォントファミリー名;
	content: $content;
	color: $color;
	font-size: $size;
	font-weight: normal;
	display: inline-block;
}

呼び出し

@include icon;