This repository has been archived on 2025-02-19. You can view files and clone it, but cannot push or open issues or pull requests.
casino/frontend/src/styles.css

9 lines
513 B
CSS
Raw Normal View History

2025-02-12 10:46:48 +01:00
@import 'tailwindcss';
2025-02-12 10:21:41 +01:00
.btn-primary {
2025-02-12 10:46:48 +01:00
@apply px-4 py-2 cursor-pointer relative font-bold rounded-lg transition-all duration-300 ease-out transform-gpu hover:scale-105 will-change-transform bg-gradient-to-r from-emerald-500 to-emerald-400 text-black hover:shadow-xl hover:shadow-emerald-500/20;
2025-02-12 10:21:41 +01:00
}
.btn-secondary {
2025-02-12 10:46:48 +01:00
@apply px-4 py-2 cursor-pointer relative font-bold rounded-lg transition-all duration-300 ease-out transform-gpu hover:scale-105 will-change-transform bg-white/10 text-white hover:bg-white/20;
2025-02-12 10:21:41 +01:00
}