Sha256: aa7c94c5314b0da45d7ad7d3536486ba11b9faae32ebd8bb56333d2162af7202

Contents?: true

Size: 1010 Bytes

Versions: 2

Compression:

Stored size: 1010 Bytes

Contents

//
// Flex Video Variables
//
$include-html-media-classes: $include-html-classes !default;

// We use these to control video container padding and margins
$flex-video-padding-top: emCalc(25) !default;
$flex-video-padding-bottom: 67.5% !default;
$flex-video-margin-bottom: emCalc(16) !default;

// We use this to control widescreen bottom padding
$flex-video-widescreen-padding-bottom: 57.25% !default;

//
// Flex Video 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%;
  }
}

@if $include-html-media-classes != false {

  /* Flex Video */
  .flex-video { @include flex-video-container; }

}

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
zurb-foundation-4.3.1 scss/foundation/components/_flex-video.scss
zurb-foundation-4.3.0 scss/foundation/components/_flex-video.scss