Day 365

Annnd, DONE!
#CodingPhase #TheCodingWay #365CodingPhaseChallenge

**********

  .services-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 40px;

    .box {
      background: rgba(255, 255, 255, 0);
      padding: 40px;
      transition: all 0.2s ease-in-out;
      .icon {
      }

      h5 {
        font-size: 1rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 2rem;
      }

      p {
        color: #b3b3b3;
        font-size: 0.9rem;
        line-height: 1.5;
      }
      &:hover {
        background: rgba(255, 255, 255, 1);
      }
    }

    .blue {
      border-bottom: 2px solid #52b8ff;
    }

    .red {
      border-bottom: 2px solid #ff5253;
    }

    .yellow {
      border-bottom: 2px solid #ffc853;
    }
  }

Comments

Popular posts from this blog

Day 1

Day 365 + 1

Day 365 + 2