/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
- // COMPONENT ANIMATIONS
- // --------------------
- .fade {
- opacity: 0;
- @include transition(opacity .15s linear);
- &.in {
- opacity: 1;
- }
- }
- .collapse {
- position:relative;
- height: 0;
- overflow:hidden;
- @include transition(height .35s ease);
- &.in {
- height: auto;
- }
- }