mixin.scss 345 B

1234567891011121314151617181920
  1. @mixin prefixer ($property, $value){
  2. -webkit-#{$property}: $value;
  3. -moz-#{$property}: $value;
  4. -o-#{$property}: $value;
  5. #{$property}: $value;
  6. }
  7. @mixin clearfix {
  8. &:after {
  9. content: "";
  10. display: table;
  11. clear: both;
  12. }
  13. }
  14. @mixin relative {
  15. position: relative;
  16. width: 100%;
  17. height: 100%;
  18. }