Sha256: b2ece2a1ba7b56fd4a7baaf36de794e7f4fae8e2021c66aed9d81ae3c1ef0bf6

Contents?: true

Size: 1.46 KB

Versions: 5

Compression:

Stored size: 1.46 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;

    @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

5 entries across 5 versions & 1 rubygems

Version Path
pageflow-0.11.4 app/assets/stylesheets/pageflow/entries.scss
pageflow-0.11.3 app/assets/stylesheets/pageflow/entries.scss
pageflow-0.11.2 app/assets/stylesheets/pageflow/entries.scss
pageflow-0.11.1 app/assets/stylesheets/pageflow/entries.scss
pageflow-0.11.0 app/assets/stylesheets/pageflow/entries.scss