1
0
Fork 0
This repository has been archived on 2021-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
dennogumi.org-archive/_sass/foundation-components/_flex-video.scss
Moritz »mo.« Sauer 87ca494ca0 Now with sass-support
2015-02-19 22:34:33 +01:00

51 lines
No EOL
1.1 KiB
SCSS

// Foundation by ZURB
// foundation.zurb.com
// Licensed under MIT Open Source
@import "global";
//
// @variables
//
$include-html-media-classes: $include-html-classes !default;
// We use these to control video container padding and margins
$flex-video-padding-top: rem-calc(25) !default;
$flex-video-padding-bottom: 67.5% !default;
$flex-video-margin-bottom: rem-calc(16) !default;
// We use this to control widescreen bottom padding
$flex-video-widescreen-padding-bottom: 56.34% !default;
//
// @mixins
//
@mixin flex-video-container {
position: relative;
padding-top: $flex-video-padding-top;
padding-bottom: $flex-video-padding-bottom;
height: 0;
margin-bottom: $flex-video-margin-bottom;
overflow: hidden;
&.widescreen { padding-bottom: $flex-video-widescreen-padding-bottom; }
&.vimeo { padding-top: 0; }
iframe,
object,
embed,
video {
position: absolute;
top: 0;
#{$default-float}: 0;
width: 100%;
height: 100%;
}
}
@include exports("flex-video") {
@if $include-html-media-classes {
.flex-video { @include flex-video-container; }
}
}