File size: 1,369 Bytes
974c87c 5474c59 974c87c 5474c59 974c87c 5474c59 974c87c 5474c59 974c87c 5474c59 974c87c a866b8e 974c87c a866b8e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 |
@keyframes pulse {
0%, 100% {
opacity: 1;
}
50% {
opacity: 0.5;
}
}
.animate-pulse-slow {
animation: pulse 3s infinite;
}
.gradient-text {
background-clip: text;
-webkit-background-clip: text;
color: transparent;
background-image: linear-gradient(90deg, #6366f1, #8b5cf6);
}
.code-block {
font-family: 'Fira Code', monospace;
border-radius: 0.5rem;
position: relative;
}
.code-block::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 2.5rem;
background-color: rgba(255, 255, 255, 0.1);
border-top-left-radius: 0.5rem;
border-top-right-radius: 0.5rem;
}
.feature-card:hover {
transform: translateY(-0.5rem) rotate(0.5deg);
box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.5), 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
animation: groove 0.5s ease-in-out;
}
@keyframes groove {
0%, 100% { transform: translateY(-0.5rem) rotate(0.5deg); }
50% { transform: translateY(-0.5rem) rotate(-0.5deg); }
}
body {
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.primary-button:hover {
animation: pulse 1s infinite;
}
@keyframes bounce {
0%, 100% { transform: translateY(0); }
50% { transform: translateY(-10px); }
}
.vibe-mode {
animation: bounce 2s infinite;
}
|