@import "bourbon/app/assets/stylesheets/_bourbon.scss";

@import "./viewport.scss";

/* Viewport preload */

.viewport-preload {
    &:after {
        content: "Loading...";
        display: block;
        margin-top: 130px;
        text-align: center;
        font-size: 20pt;
        color: #666;
        @include animation(fadeIn 0.5s ease-in-out infinite alternate);
    }
}


@include keyframes(fadeIn) {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
