Sha256: 3f6b5476dd4ab4a7e90a50e49062a28e26bd1317d62d141d8621d3e11becd9e6

Contents?: true

Size: 1.48 KB

Versions: 13

Compression:

Stored size: 1.48 KB

Contents

.entry {
  height: 100%;
  width: 100%;
  z-index: 0;

  .chapter_title {
    display: none;
  }

  .indicator {
    position: absolute;
    bottom: 0;
    width: 400px;
    max-width: 80%;
    height: 40px;
    z-index: 5;
    pointer-events: none;

    background-color: transparent;
    opacity: 0;
    @include transition(opacity 1s ease);

    &.visible {
      opacity: 1;
      @include transition(opacity 0.5s ease 0.5s);

      &.attract {
        @include animation(bounce 0.5s ease);
        @include animation-iteration-count(3)
      }
    }

    &.hidden {
      opacity: 0;
      @include transition(opacity 0.5s ease);
      top: auto; /* collision with .hidden class from application.css.scss */
    }

    &.animate {
      @include animation(bounce 0.5s ease);
    }
  }

  .scroll_indicator {
    cursor: pointer;
    visibility: hidden;
    white-space: nowrap;

    @include desktop {
      left: 8%;
    }

    @include phone {
      right: 15px;
    }

    &.visible {
      pointer-events: all;
      visibility: visible;
    }

    &.faded {
      opacity: 0;
      visibility: hidden;
      @include transition(opacity 2s ease, visibility 2s);
    }

    &.hidden_for_page {
      opacity: 0;
      visibility: hidden;
    }

    .bigScreen & {
      opacity: 0;
      visibility: 0;
      pointer-events: none;
      z-index: 0;
    }
  }

  .hidden_text_indicator {
    display: none;
    left: 8%;
  }
}

.has_mobile_platform .entry {
  .hidden_text_indicator {
    display: block;
  }
}

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
pageflow-12.1.0 app/assets/stylesheets/pageflow/entries.scss
pageflow-12.0.4 app/assets/stylesheets/pageflow/entries.scss
pageflow-12.0.3 app/assets/stylesheets/pageflow/entries.scss
pageflow-12.0.2 app/assets/stylesheets/pageflow/entries.scss
pageflow-12.0.1 app/assets/stylesheets/pageflow/entries.scss
pageflow-12.0.0 app/assets/stylesheets/pageflow/entries.scss
pageflow-12.0.0.rc7 app/assets/stylesheets/pageflow/entries.scss
pageflow-12.0.0.rc6 app/assets/stylesheets/pageflow/entries.scss
pageflow-12.0.0.rc5 app/assets/stylesheets/pageflow/entries.scss
pageflow-12.0.0.rc4 app/assets/stylesheets/pageflow/entries.scss
pageflow-12.0.0.rc3 app/assets/stylesheets/pageflow/entries.scss
pageflow-12.0.0.rc2 app/assets/stylesheets/pageflow/entries.scss
pageflow-12.0.0.rc1 app/assets/stylesheets/pageflow/entries.scss