A semantic search engine for source code https://bitshift.benkurtovic.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
691 B

  1. /*
  2. Partial to contain all globally-applicable mixins.
  3. */
  4. // Add vendor prefixes for the property $property with value $value.
  5. @mixin vendor($property, $value)
  6. -webkit-#{$property}: $value
  7. -moz-#{$property}: $value
  8. -ms-#{$property}: $value
  9. -o-#{$property}: $value
  10. #{$property}: $value
  11. // Add portable opacity style.
  12. @mixin opaque($opacity)
  13. @include vendor(opacity, $opacity)
  14. filter: alpha(opacity=$opacity)
  15. @mixin delay($time)
  16. transition-delay: $time
  17. -webkit-transition-delay: $time
  18. .t1
  19. @include vendor(transition, all 0.1s ease-out)
  20. .t2
  21. @include vendor(transition, all 0.2s ease-out)
  22. .t3
  23. @include vendor(transition, all 0.3s ease-out)