Update style.css

This commit is contained in:
Voxel 2025-04-14 17:07:03 -04:00 committed by GitHub
parent b8664fb3c7
commit e338df7dfe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,126 +1,185 @@
/* General Styling */
body { body {
font-family: Arial, sans-serif;
background-color: #f4f4f9;
color: #333;
margin: 0; margin: 0;
padding: 0; padding: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(to right, #141e30, #243b55);
color: white;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
height: 100vh; height: 100vh;
} }
.screen { h1, h2, h3 {
display: none; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
text-align: center; color: #444;
background: rgba(255, 255, 255, 0.05);
padding: 30px;
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
width: 300px;
} }
.screen.active { #app {
width: 80%;
max-width: 800px;
margin: auto;
}
/* Screen Handling */
.screen {
display: none;
}
.active {
display: block; display: block;
} }
input[type="text"],
input[type="number"] {
padding: 8px;
width: 80%;
margin-bottom: 10px;
border: none;
border-radius: 5px;
outline: none;
}
button { button {
padding: 10px 20px; background-color: #007BFF;
margin: 5px;
border: none;
border-radius: 5px;
background-color: #4CAF50;
color: white; color: white;
border: none;
padding: 10px 15px;
border-radius: 5px;
cursor: pointer; cursor: pointer;
transition: background-color 0.3s ease; font-size: 16px;
margin: 5px;
} }
button:hover { button:hover {
background-color: #45a049; background-color: #0056b3;
}
input[type="number"],
input[type="text"],
select {
padding: 8px;
font-size: 16px;
margin: 5px 0;
width: 100%;
border-radius: 5px;
border: 1px solid #ccc;
}
input[type="number"]:focus,
input[type="text"]:focus,
select:focus {
outline: none;
border-color: #007BFF;
}
h1, h2, h3 {
text-align: center;
}
/* Game Screens */
#username-setup, #main-menu, #blackjack, #slots, #roulette, #crash, #stats {
padding: 20px;
text-align: center;
} }
#xp-bar { #xp-bar {
background: rgba(255, 255, 255, 0.2); height: 25px;
border-radius: 5px; background-color: #f3f3f3;
overflow: hidden; width: 100%;
height: 20px; border-radius: 12px;
margin-bottom: 15px; margin-bottom: 10px;
} }
#xp-progress { #xp-progress {
background: #4CAF50;
height: 100%; height: 100%;
width: 0%; background-color: #4CAF50;
transition: width 0.3s ease; border-radius: 12px;
}
/* Slots Game */
#slots-reels {
display: flex;
justify-content: center;
gap: 10px;
margin-bottom: 10px;
}
.reel {
display: inline-block;
width: 50px;
height: 50px;
background-color: #ddd;
text-align: center;
font-size: 24px;
line-height: 50px;
border-radius: 5px;
}
#slots-message {
font-size: 18px;
margin-top: 20px;
color: #333;
}
/* Roulette Game */
#roulette-animation {
width: 100%;
height: 200px;
background: #ccc;
margin-bottom: 20px;
}
#roulette-result {
font-size: 18px;
color: #333;
margin-top: 20px;
}
/* Crash Game */
#crash-animation {
width: 100%;
height: 30px;
background-color: #ccc;
margin-bottom: 20px;
transition: transform 1s ease-out;
}
/* Stats Screen */
#stats p {
font-size: 16px;
margin: 5px 0;
}
/* Import/Export Progress Buttons */
#import-file,
#export-progress {
margin-top: 10px;
padding: 8px;
font-size: 16px;
background-color: #4CAF50;
color: white;
border: none;
cursor: pointer;
border-radius: 5px;
}
#import-file:focus,
#export-progress:focus {
outline: none;
}
/* Responsive Design */
@media (max-width: 768px) {
.screen {
padding: 15px;
}
button {
width: 100%;
font-size: 14px;
}
#xp-bar {
height: 15px;
}
#xp-progress {
height: 100%;
}
} }
.hidden { .hidden {
display: none; display: none;
} }
/* Slots Animation */
@keyframes spinReel {
0% {
transform: translateY(0);
}
100% {
transform: translateY(-100%);
}
}
.reel {
display: inline-block;
width: 30px;
height: 30px;
margin: 0 5px;
overflow: hidden;
position: relative;
text-align: center;
}
.reel span {
display: block;
animation: spinReel 0.5s ease-out;
font-size: 24px;
}
/* Roulette Animation */
@keyframes spinRoulette {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(720deg);
}
}
#roulette-animation {
width: 80px;
height: 80px;
margin: 10px auto;
border: 5px solid #fff;
border-top: 5px solid red;
border-radius: 50%;
animation: none;
}
/* Crash Animation */
#crash-animation {
width: 100%;
height: 10px;
background: linear-gradient(to right, #4CAF50, #f44336);
transform-origin: left;
transform: scaleX(0);
transition: transform 1s ease-out;
margin-bottom: 10px;
}