Lightweight CSS Framework for Building Apps and Websites https://crispy-css.com
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.
 
 
 

40 lines
626 B

/**
* helpers for media elements
*
*
* @author Björn Hase
*
*/
@mixin crispy__media() {
.img-responsive {
}
.img-fit-contain {
object-fit: contain;
}
.img-fit-cover {
object-fit: cover;
}
.video-responsive {
display: block;
overflow: hidden;
padding: 0;
position: relative;
width: 100%;
iframe, object, embed {
border: 0;
bottom: 0;
height: 100%;
left: 0;
position: absolute;
right: 0;
top: 0;
width: 100%;
}
}
}