A semantic search engine for source code https://bitshift.benkurtovic.com/
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

26 Zeilen
606 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. .t1
  16. @include vendor(transition, all 0.1s ease-out)
  17. .t2
  18. @include vendor(transition, all 0.2s ease-out)
  19. .t3
  20. @include vendor(transition, all 0.3s ease-out)