/sass/bootstrap/_component-animations.scss

https://bitbucket.org/decore/my-svadba.ru · Sass · 20 lines · 16 code · 2 blank · 2 comment · 0 complexity · 7588ffef9bfb3c4896ac71f197cde077 MD5 · raw file

  1. // COMPONENT ANIMATIONS
  2. // --------------------
  3. .fade {
  4. opacity: 0;
  5. @include transition(opacity .15s linear);
  6. &.in {
  7. opacity: 1;
  8. }
  9. }
  10. .collapse {
  11. position:relative;
  12. height: 0;
  13. overflow:hidden;
  14. @include transition(height .35s ease);
  15. &.in {
  16. height: auto;
  17. }
  18. }