Skip to content

Commit

Permalink
Create block-game.css
Browse files Browse the repository at this point in the history
  • Loading branch information
tzwukerf authored Dec 24, 2023
1 parent d83ef03 commit 557d96b
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions Blockers2.io/block-game.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
:root {
--grid-cols: 1;
--grid-rows: 1;
}

#container {
display: grid;
grid-gap: 0em;
grid-template-rows: repeat(var(--grid-rows), 0fr);
grid-template-columns: repeat(var(--grid-cols), 0fr);
justify-content: center;
}

.grid-item {
padding: 2em;
border: 1px solid #ddd;
text-align: center;
}

.blue {
fill: #0000ff;
}

.purple {
fill: #7F00FF;
}

.white {
fill: #FFFFFF;
}

.character {
height: 50px;
width: 50px;
padding: 5px;
background-color: #6d00c1;
border-radius: 50%;
display: inline-block;
position: relative;
}

0 comments on commit 557d96b

Please sign in to comment.