Flux-web / style.css
GarGerry's picture
Update style.css
ff4924d verified
raw
history blame
906 Bytes
/* General Body Styling */
body {
margin: 0;
padding: 0;
background: linear-gradient(90deg, #000428, #004e92);
font-family: Arial, sans-serif;
overflow: hidden;
}
/* Game Container */
.game-container {
position: relative;
width: 100vw;
height: 100vh;
border: 3px solid #00ffcc;
overflow: hidden;
box-shadow: 0 0 20px #00ffcc;
}
/* Ball */
.ball {
position: absolute;
top: 0;
left: 50%;
width: 20px;
height: 20px;
background: radial-gradient(circle, #ff00cc, #ff0066);
border-radius: 50%;
box-shadow: 0 0 15px #ff0066;
transform: translate(-50%, -50%);
}
/* Platform */
.platform {
position: absolute;
bottom: 5%;
left: 50%;
width: 100px;
height: 20px;
background: linear-gradient(90deg, #00ffcc, #0066ff);
border-radius: 10px;
box-shadow: 0 0 20px #00ffcc;
transform: translateX(-50%);
}