| @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; |
| } |
|
|
| |
| ::-webkit-scrollbar { |
| width: 8px; |
| } |
|
|
| ::-webkit-scrollbar-track { |
| background: #f1f1f1; |
| } |
|
|
| ::-webkit-scrollbar-thumb { |
| background: #888; |
| border-radius: 4px; |
| } |
|
|
| ::-webkit-scrollbar-thumb:hover { |
| background: #555; |
| } |
|
|
| |
| @keyframes colorPulse { |
| 0%, 100% { |
| transform: scale(1); |
| } |
| 50% { |
| transform: scale(1.05); |
| } |
| } |
| .color-card:hover { |
| animation: colorPulse 2s infinite; |
| } |
|
|
| |
| .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; |
| } |
| } |
|
|