|
| 1 | +/* Page entrance animation — single pages use <article>, list/section pages use <header>+<section> */ |
| 2 | +#main-content > article { |
| 3 | + animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.1s both; |
| 4 | +} |
| 5 | +#main-content > header { |
| 6 | + animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.1s both; |
| 7 | +} |
| 8 | +#main-content > section { |
| 9 | + animation: fadeUp 0.6s cubic-bezier(0.22,1,0.36,1) 0.25s both; |
| 10 | +} |
| 11 | + |
| 12 | +/* Global font size reduction */ |
| 13 | +html { |
| 14 | + font-size: 90%; |
| 15 | +} |
| 16 | + |
1 | 17 | /* Logo dark/light switching. |
2 | 18 | Congo toggles a .dark class on <html> via JS — the native |
3 | 19 | prefers-color-scheme media query inside <picture> tags does not respond |
@@ -63,11 +79,14 @@ html.dark .v2-pipeline-step-green { |
63 | 79 | from { opacity: 0; transform: translateY(28px); } |
64 | 80 | to { opacity: 1; transform: translateY(0); } |
65 | 81 | } |
66 | | -.hero-fade-1 { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both; } |
67 | | -.hero-fade-2 { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.30s both; } |
68 | | -.hero-fade-3 { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.45s both; } |
69 | | -.hero-fade-4 { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.60s both; } |
70 | | -.hero-fade-5 { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.75s both; } |
| 82 | +.hero-fade-1 { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.10s both; } |
| 83 | +.hero-fade-2 { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.22s both; } |
| 84 | +.hero-fade-3 { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.34s both; } |
| 85 | +.hero-fade-4 { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.46s both; } |
| 86 | +.hero-fade-5 { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.58s both; } |
| 87 | +.hero-fade-6 { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.70s both; } |
| 88 | +.hero-fade-7 { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.82s both; } |
| 89 | +.hero-fade-8 { animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.94s both; } |
71 | 90 |
|
72 | 91 | /* List view logos */ |
73 | 92 | .list-logo-light { display: block; } |
|
0 commit comments