Sha256: fc3a72f503fe61c2d23a007b49ccf8aaf4777d5fe3119b9af385ac327f4b8af9

Contents?: true

Size: 989 Bytes

Versions: 5

Compression:

Stored size: 989 Bytes

Contents

//
// Flex Video Variables
//

// 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

5 entries across 5 versions & 2 rubygems

Version Path
zitgit-0.1.1 public/scss/foundation/foundation/components/_flex-video.scss
zitgit-0.1.0 public/scss/foundation/foundation/components/_flex-video.scss
zitgit-0.0.2 public/scss/foundation/foundation/components/_flex-video.scss
zurb-foundation-4.1.5 scss/foundation/components/_flex-video.scss
zitgit-0.0.1 public/scss/foundation/foundation/components/_flex-video.scss