Guest User

Untitled

a guest
Apr 22nd, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.56 KB | None | 0 0
  1. /* Au lieu de faire un truc comme ça */
  2. .nav-menu
  3.     font-size: 16px
  4.     a.nav-menu-item.current-item
  5.         color: #A00
  6.         -webkit-transition: color .5s ease;
  7.         -moz-transition:    color .5s ease;
  8.         -o-transition:      color .5s ease;
  9.         -ms-transition:     color .5s ease;
  10.        
  11. /* En SASS tu n'as qu'écrire ça: */
  12. @import compass/css3/transition
  13. .nav-menu
  14.     font-size: 16px
  15.     a.nav-menu-item.current-item
  16.         color: #A00
  17.         +single-transition("color", .5s, ease) /* << Ceci est un mixin par défaut de compass */
Add Comment
Please, Sign In to add comment