Sha256: 9b61a0b8a7cd67ebeb11a13f7bb23009d93be226983dfec5653d2e14d15316ed

Contents?: true

Size: 1013 Bytes

Versions: 3

Compression:

Stored size: 1013 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(25px) !default;
$flex-video-padding-bottom: 67.5% !default;
$flex-video-margin-bottom: emCalc(16px) !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

3 entries across 3 versions & 2 rubygems

Version Path
webgen-zurb_foundation-bundle-1.0.0 lib/webgen/bundle/zurb_foundation/data/css/foundation/components/_flex-video.scss
zurb-foundation-4.2.3 scss/foundation/components/_flex-video.scss
zurb-foundation-4.2.2 scss/foundation/components/_flex-video.scss