69 lines
996 B
CSS
69 lines
996 B
CSS
body {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
margin: 0;
|
|
font-family: 'VT323', monospace;
|
|
background-color: #414141;
|
|
}
|
|
|
|
.container {
|
|
position: relative;
|
|
text-align: center;
|
|
}
|
|
|
|
#game-board {
|
|
width: 400px;
|
|
height: 400px;
|
|
display: grid;
|
|
grid-template-columns: repeat(20, 1fr);
|
|
grid-template-rows: repeat(20, 1fr);
|
|
background-color: #c4cfa3;
|
|
margin: 20px auto;
|
|
border-radius: 20px;
|
|
touch-action: none; /* verhindert Scrollen bei Swipe */
|
|
}
|
|
|
|
.scores {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 400px;
|
|
margin: auto;
|
|
}
|
|
|
|
#score {
|
|
color: #abb78a;
|
|
}
|
|
|
|
#score,
|
|
#highScore {
|
|
font-size: 40px;
|
|
font-weight: bolder;
|
|
margin: 10px 0;
|
|
}
|
|
|
|
#highScore {
|
|
color: #d8ddca;
|
|
display: none;
|
|
}
|
|
|
|
#instruction-text {
|
|
color: #333;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.snake {
|
|
background-color: #414141;
|
|
border: #5a5a5a 1px dotted;
|
|
}
|
|
|
|
.food {
|
|
background-color: #dedede;
|
|
border: #999 2px solid;
|
|
}
|
|
|
|
#logo {
|
|
margin-top: 10px;
|
|
}
|