0
respostas

Lista de exercícios: Manipulando botões

Nesse trecho de código, apresento a resolução da lista de exercícios:

 <div class="presentation-links">
          <a class="presentation-links-link" href="https://www.linkedin.com/in/raiane-batista-developer/"
            >LinkedIn</a
          >
          <a class="presentation-links-link" href="https://github.com/RaianeBatista">Github</a>
        </div>
.presentation-links {
  display: flex;
  justify-content: space-between;
}

.presentation-links-link {
  background-color: #22d4fd;
  width: 280px;
  text-align: center;
  border-radius: 16px;
  font-size: 1.5rem;
  padding: 21.5px 0;
  text-decoration: none;
  color: #000;
  font-family: "Montserrat", serif;
  font-weight: 600;
  border: 2px solid #fff;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0.5); 
}