Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tarasowski/af04525805dcef51726fd4dfeaded35b to your computer and use it in GitHub Desktop.
Save tarasowski/af04525805dcef51726fd4dfeaded35b to your computer and use it in GitHub Desktop.
game.css
/* 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