Sha256: caff69720fce1263e96f003ff9edb038be5a2f8b7de6a9aa35c49fd1ef50366e

Contents?: true

Size: 933 Bytes

Versions: 1

Compression:

Stored size: 933 Bytes

Contents

////
/// @group classic-player-controls
////

/// Base typography settings for player controls.
$classic-player-controls-typography: $player-controls-typography !default;

%player_controls {
  &-container {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    @include transition(opacity 0.1);
    @include standard-typography($classic-player-controls-typography);

    @include desktop {
      right: 0;
      bottom: 0;
      left: 0;
      height: 10%;
    }

    @include phone {
      bottom: 10%;
      left: 5%;
      max-width: 90%;

      .hint {
        display: block;
      }
    }

    @include phone_portrait {
      bottom: 50px;
    }

    &-idle {
      @include transition-duration(1.5s);
      @include transition-delay(1s);
      opacity: 0;
    }

    &-paused,
    &-unplayed,
    &-has_been_faded {
      // Unused, but have to be defined for @extend to work
      display: block;
    }
  }
}

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
pageflow-12.0.0.rc1 app/assets/stylesheets/pageflow/themes/default/player_controls/classic/container.scss