
// vendorize mixin
@mixin bc-vendorize($property, $value) {
	-webkit-#{$property}: $value;
	-moz-#{$property}: $value;
	-ms-#{$property}: $value;
	-o-#{$property}: $value;
	#{$property}: $value;
}

// box-sizing
@mixin bc-box-sizing {@include bc-vendorize(box-sizing, border-box)}

// transition
@mixin bc-transition($value) {@include bc-vendorize(transition, $value)}

//transform
@mixin bc-transform($value) {@include bc-vendorize(transform, $value)}

@mixin bc-animation($str) {
	@include bc-vendorize(animation, #{$str});
}

@mixin bc-background-image($value) {
	background-image: -webkit-#{$value};
	background-image: -moz-#{$value};
	background-image: -ms-#{$value};
	background-image: -o-#{$value};
}

/*!
 * main scss app file
 *
 * includes go here
 */
@import './components/bc-tabs';
@import './components/bc-list';
@import './components/bc-checkbox';
@import './components/bc-radio-button';
@import './components/bc-input';
@import './components/bc-validate';
@import './components/bc-section-half';
@import './components/bc-select';
@import './components/bc-select-menu';
@import './components/bc-title';
@import './components/bc-loading';
@import './components/bc-sortable-list';
