website/_sass/bootstrap/scss/_animation.scss
Jesper Hess f68ff9a945 Directory structure for SASS files
Moved bootstrap folder into _sass/bootstrap
Moved cryptohagen.scss to /assets/css
Added frontmatter to cryptohagen.scss
2017-03-09 09:09:03 +01:00

28 lines
407 B
SCSS

.fade {
opacity: 0;
transition: opacity .15s linear;
&.in {
opacity: 1;
}
}
.collapse {
display: none;
&.in {
display: block;
}
// tr&.in { display: table-row; }
// tbody&.in { display: table-row-group; }
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
transition-timing-function: ease;
transition-duration: .35s;
transition-property: height;
}