Created
July 31, 2024 12:00
-
-
Save tarasowski/af04525805dcef51726fd4dfeaded35b to your computer and use it in GitHub Desktop.
game.css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* style.css */ | |
body { | |
display: flex; | |
justify-content: center; | |
align-items: center; | |
height: 100vh; | |
margin: 0; | |
background-color: #f0f0f0; | |
} | |
#container { | |
width: 600px; | |
height: 400px; | |
border: 2px solid #ccc; | |
position: relative; | |
overflow: hidden; | |
} | |
#character { | |
position: absolute; | |
left: 0; | |
top: 0; | |
font-size: 2rem; | |
transition: transform 0.1s; /* für sanftere Bewegungen */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment