Goondex/internal/web/static/css/logo-animation.css
Stu Leak 2b4a2038fa Add JAV studios reference documentation and various UI improvements
- Add comprehensive JAV studios quick reference guide
- Update documentation index with JAV reference
- Add logo animation components and test files
- Update CSS styling for cards, buttons, forms, and theme
- Add utility scripts for configuration and import workflows
- Update templates and UI components

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
2025-12-28 16:36:38 -05:00

28 lines
800 B
CSS

/* Minimal bouncing animation for Goondex logo */
.goondex-logo-animated {
animation: logoBounce 2s ease-in-out infinite;
}
.goondex-logo-animated .nipple-left,
.goondex-logo-animated .nipple-right {
animation: nippleBounce 2s ease-in-out infinite;
}
.goondex-logo-animated .nipple-right {
animation-delay: 0.1s;
}
@keyframes logoBounce {
0% { transform: translateY(0) scaleY(1); }
20% { transform: translateY(-20px) scaleY(1.1); }
30% { transform: translateY(0) scaleY(0.7); }
40% { transform: translateY(8px) scaleY(1.15); }
100% { transform: translateY(0) scaleY(1); }
}
@keyframes nippleBounce {
0%, 100% { transform: translateY(0); }
25% { transform: translateY(-6px); }
50% { transform: translateY(0); }
75% { transform: translateY(-3px); }
}