Skip to content

Commit

Permalink
merge
Browse files Browse the repository at this point in the history
  • Loading branch information
Naman Dureja authored and Naman Dureja committed Jan 9, 2022
2 parents 5aeee51 + 565f894 commit 031d529
Show file tree
Hide file tree
Showing 14 changed files with 897 additions and 125 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
node_modules
node_modules/*
.env
*.csv
18 changes: 5 additions & 13 deletions public/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -162,24 +162,16 @@ nav{
justify-content: space-between;
}


/* width */
::-webkit-scrollbar {
width: 8px;
width: 0.6vw;
}

/* Track */
::-webkit-scrollbar-track {
background: transparent;
background: #363636;
}


/* Handle */
::-webkit-scrollbar-thumb {
background: rgb(121, 121, 121);
background: #ff6489;
border-radius: 2px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555;
background: #ff6489b0;
}
57 changes: 57 additions & 0 deletions public/css/frontmanGames.css → public/css/vipGames.css
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ nav{
}
.game:hover{
background-color: #292929;
cursor: pointer;
}
.game > div{
display: flex;
Expand All @@ -119,4 +120,60 @@ nav{
}
.gameStatus{
font-size: 20px;
}

.bg-overlay{
position: fixed;
top: 0;
left: 0;
z-index: 10;
background-color: #00000080;
cursor: pointer;
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.popup-box{
z-index: 999;
cursor:default;
border-radius: 10px;
width:700px;
background-color: #363636;
color: white;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 20px 80px;
}

.popup-title{
font-size: 28px;
font-weight: 600;
margin: 40px 0;
}
.popup-desc{
text-align: center;
margin-bottom: 30px;
}
.popup-stats{
display: flex;
gap: 70px;
margin-bottom: 40px;
}
.popup-stats > div{
display: flex;
flex-direction: column;
align-items: center;

}
.popup-box svg{
width: 60px;
}
.popup-stat-num{
font-size: 28px;
margin:10px 0;
}
Loading

0 comments on commit 031d529

Please sign in to comment.