Stamps
Category: SpaceHey
/* Faster & More Vibrant Moving Gradient */ @keyframes gradientMove { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } .profile { background: linear-gradient(45deg, #ff0000, #ff7300, #ffeb00, #00ff00, #00ffff, #0000ff, #8000ff, #ff00ff); background-size: 300% 300%; animation: gradientMove 2s infinite linear; border-radius: 15px; pad... » Continue Reading