I'm trying to build up a fade style using CSS3 (and SASS/Compass to be readable)
I would like to make the elements turn from full transparency to full opacity. I tried something like that:
@import "compass/css3/transition";
@import "compass/css3/opacity";
.fade{
@include transparent;
@include transition(opacity(1), 2s ease-out);
}
With that try, there's no transition effect, and the element remains transparent...