join.scss 1.18 KB
// i.fas.fa-location-arrow {
//   display: flex;
//   justify-content: center;
//   align-items: center;
//   width: 30px;
//   height: auto;
//   object-fit: cover;
// }

h3 {
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 50px 0px;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  font-size: 27px;
  color: rgb(15, 100, 142);
  opacity: 0.8;
}

a {
  .login-github::before {
    transform: scaleX(0);
    transform-origin: bottom right;
  }

  .login-github:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
  }

  .login-github::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    inset: 0 0 0 0;
    background: hsl(200 100% 80%);
    z-index: -1;
    transition: transform 0.3s ease;
  }

  .login-github {
    position: relative;
    font-size: 5rem;
  }

  html {
    block-size: 100%;
    inline-size: 100%;
  }

  body {
    min-block-size: 100%;
    min-inline-size: 100%;
    margin: 0;
    box-sizing: border-box;
    display: grid;
    place-content: center;
  }

  @media (orientation: landscape) {
    body {
      grid-auto-flow: column;
    }
  }
}