Button List Gradient

Lista de botões com degrade

BOTÃO

Código

<!DOCTYPE html>
<html lang="pt-BR">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Galeria de Botões Únicos</title>
  <style>
    body {
      font-family: Arial, sans-serif;
      background-color: #f0f2f5;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      height: 100vh;
      margin: 0;
    }
    h1 {
      margin-bottom: 20px;
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 20px;
      width: 80%;
    }
    .button {
      border: none;
      border-radius: 8px;
      padding: 15px;
      font-size: 16px;
      cursor: pointer;
      text-align: center;
      color: white;
      transition: transform 0.3s, opacity 0.3s;
    }
    .button:hover {
      transform: translateY(-5px);
      opacity: 0.9;
    }
    .button1 {
      background: linear-gradient(45deg, #ff6b6b, #f7d94c);
    }
    .button2 {
      background: linear-gradient(45deg, #4facfe, #00f2fe);
    }
    .button3 {
      background: linear-gradient(45deg, #ff5f6d, #ffc371);
    }
    .button4 {
      background: linear-gradient(45deg, #43e97b, #38f9d7);
    }
    .button5 {
      background: linear-gradient(45deg, #ff9a9e, #fad0c4);
    }
    .button6 {
      background: linear-gradient(45deg, #fbc2eb, #a6c1ee);
    }
    .button7 {
      background: linear-gradient(45deg, #ff758c, #ff7eb3);
    }
    .button8 {
      background: linear-gradient(45deg, #00c6ff, #0072ff);
    }
    .button9 {
      background: linear-gradient(45deg, #f9d423, #ff4e50);
    }
    .button10 {
      background: linear-gradient(45deg, #8e44ad, #3498db);
    }
    .button11 {
      background: linear-gradient(45deg, #ff512f, #dd2476);
    }
    .button12 {
      background: linear-gradient(45deg, #ff6a00, #ee0979);
    }
    .button13 {
      background: linear-gradient(45deg, #00c6ff, #f0f0f0);
    }
    .button14 {
      background: linear-gradient(45deg, #ffefba, #ffffff);
    }
    .button15 {
      background: linear-gradient(45deg, #00d2ff, #3a7bd5);
    }
    .button16 {
      background: linear-gradient(45deg, #ff9966, #ff5e62);
    }
    .button17 {
      background: linear-gradient(45deg, #00d2ff, #3a6073);
    }
    .button18 {
      background: linear-gradient(45deg, #fc00ff, #00dbde);
    }
    .button19 {
      background: linear-gradient(45deg, #f12711, #f5af19);
    }
    .button20 {
      background: linear-gradient(45deg, #ff512f, #dd2476);
    }
  </style>
</head>
<body>

  <h1>Galeria de Botões Únicos</h1>
  <div class="gallery">
    <button class="button button1">Botão 1</button>
    <button class="button button2">Botão 2</button>
    <button class="button button3">Botão 3</button>
    <button class="button button4">Botão 4</button>
    <button class="button button5">Botão 5</button>
    <button class="button button6">Botão 6</button>
    <button class="button button7">Botão 7</button>
    <button class="button button8">Botão 8</button>
    <button class="button button9">Botão 9</button>
    <button class="button button10">Botão 10</button>
    <button class="button button11">Botão 11</button>
    <button class="button button12">Botão 12</button>
    <button class="button button13">Botão 13</button>
    <button class="button button14">Botão 14</button>
    <button class="button button15">Botão 15</button>
    <button class="button button16">Botão 16</button>
    <button class="button button17">Botão 17</button>
    <button class="button button18">Botão 18</button>
    <button class="button button19">Botão 19</button>
    <button class="button button20">Botão 20</button>
  </div>

  <script>
    // Aqui você pode adicionar funcionalidades adicionais, se necessário
  </script>
</body>
</html>