HomePage.scss 670 Bytes
Newer Older
Ken's avatar
Ken committed
1 2
@use "styles/index" as *;

Ken's avatar
Ken committed
3
.homePage {
Ken's avatar
Ken committed
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
  padding: 40px 0;

  &-title {
    position: relative;
    z-index: 2;
    text-align: center;

    h1 {
      font-size: 48px;
      color: $info-700;
      font-weight: 700;
      text-transform: capitalize;
      padding: 0 30px;
      background-color: white;
      position: relative;
      z-index: 2;
      display: inline-block;
    }

    &::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: $info-700;
      z-index: 1;
    }
  }

  &-list {
    margin-top: 40px;
  }
Ken's avatar
Ken committed
38 39 40 41 42 43

  &-load {
    button {
      width: 32%;
    }
  }
Ken's avatar
Ken committed
44
}