Skip to content

Commit

Permalink
chore: Update types and game configuration for score, elimination, an…
Browse files Browse the repository at this point in the history
…d next brick updates
  • Loading branch information
jinhuid committed Jun 2, 2024
1 parent 7f3fd24 commit e36606d
Show file tree
Hide file tree
Showing 13 changed files with 139 additions and 877 deletions.
34 changes: 28 additions & 6 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
background-color: rgb(158,173,134);
/* z-index: ; */
}
button,.score{
button,.score,.eliminate{
padding: 8px 16px;
color: white;
border: none;
Expand All @@ -54,20 +54,42 @@ button,.score{
.start:hover{
background-color: #64c88a;
}
.pause{
display: none;
.next_brick{
position: absolute;
background-color: brown;
top: 50%;
background-color:white ;
border: 1px solid black;
top: 0;
right: 0;
transform-origin:right center ;
transform: scale(0.4);
}

.score{
position: absolute;
background-color: brown;
top: 20%;
right: 0;
}
.eliminate{
position: absolute;
background-color: brown;
top: 30%;
right: 0;
}
.regame{
position: absolute;
background-color: brown;
top: 40%;
right: 0;
}

.restart{
display: none;
}

.pause{
display: none;
position: absolute;
background-color: brown;
top: 50%;
right: 0;
}
Loading

0 comments on commit e36606d

Please sign in to comment.