Sha256: 5fc55ab6e2203685cdbbb1a3ce6f1ac9af7d381e0e37575a81dbe3c4bcd7ba7f
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
// Media .img-responsive { display: block; height: auto; max-width: 100%; } // object-fit support is coming to Microsoft Edge // https://developer.microsoft.com/en-us/microsoft-edge/platform/status/objectfitandobjectposition/ .img-fit-cover { object-fit: cover; } .img-fit-contain { object-fit: contain; } // Video responsive .video-responsive { display: block; overflow: hidden; padding: 0; position: relative; width: 100%; &::before { content: ""; display: block; padding-bottom: 56.25%; // Default ratio 16:9, you can calculate this value by dividing 9 by 16 } iframe, object, embed { border: 0; bottom: 0; height: 100%; left: 0; position: absolute; right: 0; top: 0; width: 100%; } video { height: auto; max-width: 100%; width: 100%; } } .video-responsive-4-3 { &::before { padding-bottom: 75%; // Ratio 4:3 } } .video-responsive-1-1 { &::before { padding-bottom: 100%; // Ratio 1:1 } } .figure { margin: 0 0 $layout-spacing 0; .figure-caption { color: $gray-color-dark; margin-top: $layout-spacing; } }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
spectre_scss-0.4.0.0 | vendor/assets/stylesheets/spectre/_media.scss |