eva / style.css
2026casino's picture
Update style.css
63b8baa verified
Raw
History Blame Contribute Delete
2.26 kB
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #121212; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #555; }
.bg-green-gradient {
background: linear-gradient(180deg, rgba(11,60,50,0.6) 0%, rgba(11,30,25,0.8) 100%);
}
.game-card-shadow { box-shadow: 0px 8px 0px 0px #1f2937; }
.game-card-shadow:hover { box-shadow: 0px 8px 0px 0px #fb923c; }
.header-blur { background: linear-gradient(to bottom, #0B0B0B 50%, transparent); }
.gold-gradient { background: linear-gradient(to bottom, #fef9c3, #eab308); }
.gold-gradient-text {
background: linear-gradient(to bottom, #fef9c3, #eab308);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.feature-card { background: linear-gradient(180deg, rgba(11,60,50,0.6) 0%, rgba(11,30,25,0.8) 100%); }
.divider-line { background: linear-gradient(to right, transparent, #fde047, transparent); }
@keyframes float {
0%, 100% { transform: translateY(0px); }
50% { transform: translateY(-10px); }
}
.float-animation { animation: float 3s ease-in-out infinite; }
@keyframes slideIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.slide-in { animation: slideIn 0.5s ease-out forwards; }
.live-win-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
.btn-gold { background: linear-gradient(to bottom, #fef9c3, #eab308); color: #111827; font-weight: 700; text-transform: uppercase; border-radius: 1rem; transition: all 0.2s; }
.btn-outline { border: 1px solid #fde68a; background: #111827; color: #f9fafb; font-weight: 700; text-transform: uppercase; border-radius: 1rem; transition: all 0.2s; }
.game-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 1rem; }
@media (min-width: 768px) { .game-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 1.25rem; } }
.seo-collapsed { max-height: 12rem; overflow: hidden; }
.seo-expanded { max-height: none; }