← Volver a la biblioteca

CSS

Snippets rápidos para maquetado y estilos.

  • Centrar div con flex
    .parent {
      display: flex;
      justify-content: center;
      align-items: center;
    }
  • Texto con gradiente
    .text-gradient {
      background: linear-gradient(to right, #ff7e5f, #feb47b);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
  • Scrollbar personalizado
    ::-webkit-scrollbar {
      width: 8px;
    }
    ::-webkit-scrollbar-thumb {
      background: #888;
      border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
      background: #555;
    }
  • Sombra flotante
    .card:hover { 
     transform: translateY(-5px);
     box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }