Skip to content

Commit

Permalink
added some styling in the project
Browse files Browse the repository at this point in the history
  • Loading branch information
yassmittal committed Jan 10, 2024
1 parent b778b88 commit 3d17d7b
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions JavascriptProjects/2048Game/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ body {
min-height: 100vh;
margin: 0;
padding: 0;
background-color: rgb(16, 24, 32, 0.6);
}
#game-container {
display: grid;
grid-template-columns: repeat(4, 100px);
gap: 10px;
margin: 20px;
background-color: rgba(0, 0, 0, 0.02);
background-color: rgb(254, 231, 21, 0.5);
padding: 1rem;
border-radius: 12px;
}
Expand All @@ -25,7 +26,8 @@ body {
font-size: 24px;
font-weight: bold;
border-radius: 10px;
background-color: rgba(0, 0, 0, 0.04);
background-color: rgb(16, 24, 32, 0.2);
box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
}

.tile-content {
Expand Down

0 comments on commit 3d17d7b

Please sign in to comment.