abstracts/
base/
components/
layout/
pages/
themes/
vendors/
main.scss
파일명 앞에 _(언더바) 사용
$h1-align:center;
h1 {
text-align:$1-align;
}
@mixin ellipsis { // 말줄임
text-overflow:ellipsis;
white-space: nowrap;
overflow:hidden;
}
p {
@include ellipsis;
}
@function half-opacity($color) {
$color: rgba($color, .5);
@return $color;
}
h1 {
color: half-opacity(red);
}