File: /home/salhiscp/salhab360photos.com/wp-content/themes/acora/sass/base/_mixins.scss
/**
* Mixins
*
* @package acora
* @since acora 1.0
*/
/*
Mixins
------------------------------------------------------------
*/
@mixin animate-motion ($attr, $time) {
transition: $attr $time cubic-bezier(.7,0,.2,1);
}
@mixin animate-hover ($attr, $time) {
transition: $attr $time ease-out;
}
@mixin transform ($val){
transform: $val;
}
@keyframes spin {
from { transform: rotate(0deg); }
to { transform: rotate(360deg); }
}
@mixin fullWidth (){
width: 100%;
height:auto;
}