Spaces:
Running
Running
File size: 1,794 Bytes
0a1f542 8a3bfd7 0a1f542 8a3bfd7 0a1f542 8a3bfd7 0a1f542 8a3bfd7 0a1f542 8a3bfd7 0a1f542 8a3bfd7 0a1f542 |
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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 |
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #faf8ef;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.container {
text-align: center;
}
h1 {
font-size: 48px;
color: #776e65;
margin-bottom: 20px;
}
.score-container {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.score-box {
background-color: #bbada0;
padding: 10px 20px;
border-radius: 5px;
color: white;
}
#new-game {
background-color: #8f7a66;
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
.grid-container {
background-color: #bbada0;
padding: 10px;
border-radius: 5px;
display: inline-block;
}
.grid-row {
display: flex;
}
.grid-cell {
width: 100px;
height: 100px;
background-color: #cdc1b4;
margin: 5px;
border-radius: 5px;
display: flex;
justify-content: center;
align-items: center;
font-size: 36px;
font-weight: bold;
color: #776e65;
}
.tile {
background-color: #eee4da;
}
.tile-2 { background-color: #eee4da; }
.tile-4 { background-color: #ede0c8; }
.tile-8 { background-color: #f2b179; color: white; }
.tile-16 { background-color: #f59563; color: white; }
.tile-32 { background-color: #f67c5f; color: white; }
.tile-64 { background-color: #f65e3b; color: white; }
.tile-128 { background-color: #edcf72; color: white; }
.tile-256 { background-color: #edcc61; color: white; }
.tile-512 { background-color: #edc850; color: white; }
.tile-1024 { background-color: #edc53f; color: white; }
.tile-2048 { background-color: #edc22e; color: white; } |