We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aece9fd commit e7cc667Copy full SHA for e7cc667
moooodotfarm-backend/src/ports/http/templates/index.html
@@ -23,6 +23,15 @@
23
50% { transform: translateY(-8px); }
24
}
25
26
+ @keyframes gentle-bob-flipped {
27
+ 0%, 100% { transform: scaleY(-1) translateY(0); }
28
+ 50% { transform: scaleY(-1) translateY(-8px); }
29
+ }
30
+
31
+ .cow-hero.flipped {
32
+ animation: gentle-bob-flipped 3s ease-in-out infinite;
33
34
35
.site-subtitle {
36
font-size: 1.8rem;
37
font-weight: 700;
@@ -265,4 +274,13 @@
265
274
{% endfor %}
266
275
</ul>
267
276
</main>
277
278
+ <script>
279
+ if (Math.random() < 0.001) {
280
+ const cowHero = document.querySelector('.cow-hero');
281
+ if (cowHero) {
282
+ cowHero.classList.add('flipped');
283
284
285
+ </script>
268
286
{% endblock %}
0 commit comments