File size: 673 Bytes
484dc03 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f0f0f0;
margin: 0;
font-family: Arial, sans-serif;
}
#game-container {
position: relative;
width: 600px;
height: 200px;
border: 2px solid #000;
background-color: #fff;
overflow: hidden;
}
#dino {
position: absolute;
bottom: 0;
width: 40px;
height: 40px;
background-color: #4caf50;
border-radius: 10px;
}
#obstacle {
position: absolute;
bottom: 0;
width: 20px;
height: 40px;
background-color: #e74c3c;
border-radius: 5px;
}
#score {
position: absolute;
top: 10px;
left: 10px;
font-size: 24px;
color: #333;
}
|