Sha256: b8574aaa7ed14ee9fc192c8e91017a59bf21686aee722ef39ce29ae3ab9a761c

Contents?: true

Size: 1.03 KB

Versions: 7

Compression:

Stored size: 1.03 KB

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

7 entries across 7 versions & 2 rubygems

Version Path
zurb-foundation-4.2.1 scss/foundation/components/_flex-video.scss
zurb-foundation-4.2.0 scss/foundation/components/_flex-video.scss
themepile-abstractio-4.1.7 scss/abstractio/components/_flex-video.scss
themepile-abstractio-1.0.4 scss/abstractio/components/_flex-video.scss
themepile-abstractio-1.0.3 scss/abstractio/components/_flex-video.scss
themepile-abstractio-1.0.2 scss/abstractio/components/_flex-video.scss
zurb-foundation-4.1.6 scss/foundation/components/_flex-video.scss