Sha256: 05b0348433f1959deec50d97d41c36b90f9f90eabcf6fb497e2b5f5934b78266

Contents?: true

Size: 589 Bytes

Versions: 23

Compression:

Stored size: 589 Bytes

Contents

.flashes {
  @include animation-name(flash-slide-up);
  @include animation-duration(500ms);
  @include animation-delay(3s);
  @include animation-fill-mode(forwards);
  left: 0;
  height: $top_nav_height;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 20;
}

.flash {
  @include border-radius(3px);
  background-color: $yellow;
  color: white;
  line-height: $top_nav_height + 1;
  padding: 0 20px;
  text-align: center;

  &.flash_alert {
    background-color: $red;
  }

}


@include keyframes(flash-slide-up) {
  0% {
    top: 0;
  }
  100% {
    top: 0 - $top_nav_height;
  }
}

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
lalala-4.0.0.dev.56 app/assets/stylesheets/lalala/modules/_flashes.css.scss
lalala-4.0.0.dev.50 app/assets/stylesheets/lalala/modules/_flashes.css.scss
lalala-4.0.0.dev.46 app/assets/stylesheets/lalala/modules/_flashes.css.scss