Layout von Websiten mit Bootstrap und Foundation
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_transitions.scss 261B

1234567891011121314151617181920
  1. .fade {
  2. @include transition($transition-fade);
  3. &:not(.show) {
  4. opacity: 0;
  5. }
  6. }
  7. .collapse {
  8. &:not(.show) {
  9. display: none;
  10. }
  11. }
  12. .collapsing {
  13. position: relative;
  14. height: 0;
  15. overflow: hidden;
  16. @include transition($transition-collapse);
  17. }