Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
codesnakers authored Feb 12, 2023
1 parent 8c488ba commit 79e76bf
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
body{
margin: 0;
}
.score-board{
text-align: center;
font-size: 36px;
color: red;
}
.game-board{
width: 80%;
height: 80vw;
border: solid 1px black;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
}
.box{
/*border: solid 1px red;*/
width: calc(100% / 9);
height: calc(100% / 9);
/*transition: background 0.8s, transform 0.8s;*/
transition:transform 0.5s;
background-repeat: no-repeat;
background-size: cover;
}
.c0{ background-image: url(/images/blue-candy.png); }
.c1{ background-image: url(/images/green-candy.png); }
.c2{ background-image: url(/images/orange-candy.png); }
.c3{ background-image: url(/images/purple-candy.png); }
.c4{ background-image: url(/images/red-candy.png); }
.c5{ background-image: url(/images/yellow-candy.png); }

[data-toberemoved]{
transform: scale(1.3);
/*opacity: 0.8;*/
}
Binary file added images/blue-candy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/green-candy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/orange-candy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/purple-candy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/red-candy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/yellow-candy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 79e76bf

Please sign in to comment.