_new.scss 1.52 KB
Newer Older
1
.newpage {
2
  background: linear-gradient(to bottom, darken(mc('blue', '900'), 10%) 0%, mc('purple', '500') 100%);
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: mc('grey', '50');

  &::before {
    content: '';
    display:block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('../static/svg/motif-circuit.svg');
    background-position: center center;
    background-repeat: repeat;
    background-size: 200px;
    z-index: 0;
    opacity: .75;
    animation: onboardingBgReveal 80s linear infinite;

    @include keyframes(onboardingBgReveal) {
      0% {
        background-position-y: 0;
      }
      100% {
        background-position-y: -2000px;
      }
    }
  }

  &::after {
    content: '';
    position: absolute;
39
    background-color: transparent;
40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
    background-image: url('../static/svg/motif-overlay.svg');
    background-attachment: fixed;
    background-size: cover;
    opacity: .5;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }

  &-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }

  img {
    height: 250px;
    margin-bottom: 3rem;
    z-index: 2;
62
    animation-duration: 2s;
63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81

    @include until($tablet) {
      height: 200px;
    }
  }

  h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    z-index: 2;
  }
  h2 {
    margin-bottom: 3rem;
    z-index: 2;
  }
  .v-btn {
    z-index: 2;
  }
}