Files
siphalor.de/_sass/klise/_miscellaneous.scss
piharpi 1fabbf8ea7 revamp
2020-03-09 22:37:39 +07:00

31 lines
393 B
SCSS

// Animation fade-in
@keyframes fadein {
0% {
opacity: 0.2;
}
100% {
opacity: 0.99;
}
}
// Responsive embed video
.embed-responsive {
height: 0;
max-width: 100%;
overflow: hidden;
position: relative;
padding-bottom: 56.25%;
margin-top: 20px;
iframe,
object,
embed {
top: 0;
left: 0;
width: 100%;
height: 100%;
position: absolute;
}
}