Skip to content

Commit

Permalink
Update App.css
Browse files Browse the repository at this point in the history
  • Loading branch information
atharvmalve authored Apr 12, 2024
1 parent 036a112 commit 5c13af2
Showing 1 changed file with 53 additions and 28 deletions.
81 changes: 53 additions & 28 deletions src/App.css
Original file line number Diff line number Diff line change
@@ -1,38 +1,63 @@
.App {
text-align: center;
body{
background-color: black;
/* height: 100vh;
width: 100vw; */
box-sizing: border-box;
}

.App-logo {
height: 40vmin;
pointer-events: none;
.heading{
background-color: rgb(0, 149, 163);
color: white;
display: flex;
justify-content: center;
align-items: center;
margin: 0px;
}

@media (prefers-reduced-motion: no-preference) {
.App-logo {
animation: App-logo-spin infinite 20s linear;
}
.gameboard{
/* background-color: blue; */
padding-top: 1vh;
padding-left: 3vw;
padding-right: 3vw;
padding-bottom: 1vw;
}

.App-header {
background-color: #282c34;
min-height: 100vh;
.text{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
color: white;
font-size: 3vh;
}
.row-1{
display: flex;
justify-content: center;
font-size: calc(10px + 2vmin);
align-items: center;
}
.row-2{
display: flex;
justify-content: center;
align-items: center;
}
.row-3{
display: flex;
justify-content: center;
align-items: center;
}
.Square{
width: 14vh;
height: 14vh;
margin: 0.5vh;
border: 0.5vh;
border-style: solid;
border-radius: 1vh;
color: white;
background-color: transparent;
border-color: rgb(0, 149, 163);
font-size: 9vh;
}

.App-link {
color: #61dafb;
.Square:hover{
width: 15vh;
height: 15vh;
border: 0.5vh;
border-style: solid;
border-radius: 1.5vh;
}

@keyframes App-logo-spin {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

0 comments on commit 5c13af2

Please sign in to comment.