Skip to content

Commit

Permalink
Chess_Game added
Browse files Browse the repository at this point in the history
  • Loading branch information
Kalivarapubindusree committed Aug 9, 2023
1 parent 2324be7 commit 327ec8c
Show file tree
Hide file tree
Showing 16 changed files with 787 additions and 0 deletions.
Binary file added src/Games/Chess_Game/BKnight.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 src/Games/Chess_Game/Bbishop.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 src/Games/Chess_Game/Bking.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 src/Games/Chess_Game/Bpawn.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 src/Games/Chess_Game/Bqueen.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 src/Games/Chess_Game/Brook.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
80 changes: 80 additions & 0 deletions src/Games/Chess_Game/Chess.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
* {
margin: 0;
padding: 0;
}

body {
display: grid;
place-items: center;
overflow-x: hidden;
}

h1 {
margin: 10px;
}

ul {
display: grid;
grid-template-columns: 1fr;
}

.divv {
display: flex;
}

li {
list-style: none;
display: grid;
place-items: center;
font-size: 0px;
}

.box {
margin: .5px;
width: 75px;
height: 75px;
}

#tog {
margin: 10px 0px;
}



.allimg {
width: 45px;
position: relative;
bottom: 5px;
}

.allpawn {
transform: scale(.7);
}

.authcont {
width: 100vw;
}

.author {
float: right;
margin-right: 50px;

}


@media (max-width:650px){

#tog {
margin-bottom: 70px;

}

.box {
width: 11vw;
height: 11vw;
}

.allimg {
width: 7vw;
}
}
Loading

0 comments on commit 327ec8c

Please sign in to comment.