File size: 1,145 Bytes
7ca8a68 6a5f4a5 7ca8a68 6a5f4a5 7ca8a68 6a5f4a5 7ca8a68 6a5f4a5 7ca8a68 6a5f4a5 7ca8a68 6a5f4a5 7ca8a68 b4d74c1 | 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 66 67 68 | @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
body {
font-family: 'Inter', sans-serif;
scroll-behavior: smooth;
}
/* Custom scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
/* Animation for color cards */
@keyframes colorPulse {
0%, 100% {
transform: scale(1);
}
50% {
transform: scale(1.05);
}
}
.color-card:hover {
animation: colorPulse 2s infinite;
}
/* Timeline styles */
.right-timeline {
animation: slideInRight 0.5s ease-out;
}
.left-timeline {
animation: slideInLeft 0.5s ease-out;
}
@keyframes slideInRight {
from {
transform: translateX(100px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
@keyframes slideInLeft {
from {
transform: translateX(-100px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
|