-
Notifications
You must be signed in to change notification settings - Fork 841
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
52980f5
commit e0873aa
Showing
8 changed files
with
381 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
.navdiv { | ||
display: flex; | ||
align-items: center; | ||
justify-content: flex-end; /* Align buttons to the right */ | ||
margin-top: 45px; | ||
margin-right: 30px; | ||
} | ||
|
||
|
||
.login{ | ||
background-color: #640D6B; | ||
margin-left: 10px; | ||
border-radius: 10px; | ||
padding: 10px; | ||
width: 90px; | ||
/* border: none; */ | ||
cursor: pointer; | ||
} | ||
.signup{ | ||
background-color:#A91D3A; | ||
margin-left: 10px; | ||
border-radius: 10px; | ||
padding: 10px; | ||
width: 90px; | ||
/* border: none; */ | ||
cursor: pointer; | ||
} | ||
|
||
|
||
button a { | ||
color: white; | ||
font-weight: bold; | ||
font-size: 15px; | ||
text-decoration: none; /* Remove underline */ | ||
} | ||
|
||
button:hover { | ||
background-color: #333; /* Darken button color on hover */ | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
*{ | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: "Poppins", sans-serif; | ||
} | ||
body{ | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
min-height: 100vh; | ||
background-color: #333; | ||
background: url('C:/Users/Manikanta/OneDrive/Desktop/GameZone/assets/images/background.avif') no-repeat; | ||
background-size: cover; | ||
background-position: center; | ||
} | ||
|
||
.wrapper{ | ||
width: 420px; | ||
background: transparent; | ||
border: 2px solid rgba(255, 255, 255, .2); | ||
backdrop-filter: blur(9px); | ||
color: #fff; | ||
border-radius: 12px; | ||
padding: 30px 40px; | ||
} | ||
.wrapper h1{ | ||
font-size: 36px; | ||
text-align: center; | ||
} | ||
.wrapper .input-box{ | ||
position: relative; | ||
width: 100%; | ||
height: 50px; | ||
|
||
margin: 30px 0; | ||
} | ||
.input-box input{ | ||
width: 100%; | ||
height: 100%; | ||
background: transparent; | ||
border: none; | ||
outline: none; | ||
border: 2px solid rgba(255, 255, 255, .2); | ||
border-radius: 40px; | ||
font-size: 16px; | ||
color: #fff; | ||
padding: 20px 45px 20px 20px; | ||
} | ||
.input-box input::placeholder{ | ||
color: #fff; | ||
} | ||
.input-box i{ | ||
position: absolute; | ||
right: 20px; | ||
top: 30%; | ||
transform: translate(-50%); | ||
font-size: 20px; | ||
|
||
} | ||
.wrapper .remember-forgot{ | ||
display: flex; | ||
justify-content: space-between; | ||
font-size: 14.5px; | ||
margin: -15px 0 15px; | ||
} | ||
.remember-forgot label input{ | ||
accent-color: #fff; | ||
margin-right: 3px; | ||
|
||
} | ||
.remember-forgot a{ | ||
color: #fff; | ||
text-decoration: none; | ||
|
||
} | ||
.remember-forgot a:hover{ | ||
text-decoration: underline; | ||
} | ||
.wrapper .btn{ | ||
width: 100%; | ||
height: 45px; | ||
background: #fff; | ||
border: none; | ||
outline: none; | ||
border-radius: 40px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, .1); | ||
cursor: pointer; | ||
font-size: 16px; | ||
color: #333; | ||
font-weight: 600; | ||
} | ||
.wrapper .register-link{ | ||
font-size: 14.5px; | ||
text-align: center; | ||
margin: 20px 0 15px; | ||
|
||
} | ||
.register-link p a{ | ||
color: #fff; | ||
text-decoration: none; | ||
font-weight: 600; | ||
} | ||
.register-link p a:hover{ | ||
text-decoration: underline; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
*{ | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: "Poppins", sans-serif; | ||
} | ||
body{ | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
min-height: 100vh; | ||
background-color: #333; | ||
background: url('C:/Users/Manikanta/OneDrive/Desktop/GameZone/assets/images/background.avif') no-repeat; | ||
background-size: cover; | ||
background-position: center; | ||
} | ||
|
||
.wrapper{ | ||
width: 420px; | ||
background: transparent; | ||
border: 2px solid rgba(255, 255, 255, .2); | ||
backdrop-filter: blur(9px); | ||
color: #fff; | ||
border-radius: 12px; | ||
padding: 30px 40px; | ||
} | ||
.wrapper h1{ | ||
font-size: 36px; | ||
text-align: center; | ||
} | ||
.wrapper .input-box{ | ||
position: relative; | ||
width: 100%; | ||
height: 50px; | ||
|
||
margin: 30px 0; | ||
} | ||
.input-box input{ | ||
width: 100%; | ||
height: 100%; | ||
background: transparent; | ||
border: none; | ||
outline: none; | ||
border: 2px solid rgba(255, 255, 255, .2); | ||
border-radius: 40px; | ||
font-size: 16px; | ||
color: #fff; | ||
padding: 20px 45px 20px 20px; | ||
} | ||
.input-box input::placeholder{ | ||
color: #fff; | ||
} | ||
.input-box i{ | ||
position: absolute; | ||
right: 20px; | ||
top: 30%; | ||
transform: translate(-50%); | ||
font-size: 20px; | ||
|
||
} | ||
.wrapper .remember-forgot{ | ||
display: flex; | ||
justify-content: space-between; | ||
font-size: 14.5px; | ||
margin: -15px 0 15px; | ||
} | ||
.remember-forgot label input{ | ||
accent-color: #fff; | ||
margin-right: 3px; | ||
|
||
} | ||
.remember-forgot a{ | ||
color: #fff; | ||
text-decoration: none; | ||
|
||
} | ||
.remember-forgot a:hover{ | ||
text-decoration: underline; | ||
} | ||
.wrapper .btn{ | ||
width: 100%; | ||
height: 45px; | ||
background: #fff; | ||
border: none; | ||
outline: none; | ||
border-radius: 40px; | ||
box-shadow: 0 0 10px rgba(0, 0, 0, .1); | ||
cursor: pointer; | ||
font-size: 16px; | ||
color: #333; | ||
font-weight: 600; | ||
} | ||
.wrapper .register-link{ | ||
font-size: 14.5px; | ||
text-align: center; | ||
margin: 20px 0 15px; | ||
|
||
} | ||
.register-link p a{ | ||
color: #fff; | ||
text-decoration: none; | ||
font-weight: 600; | ||
} | ||
.register-link p a:hover{ | ||
text-decoration: underline; | ||
} |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,6 +50,7 @@ | |
<link rel="stylesheet" href="./assets/css/navbar.css"> | ||
<link rel="stylesheet" href="./assets/css/gameCard.css"> | ||
<link rel="stylesheet" href="./assets/css/cursor_transition.css"> | ||
<link rel="stylesheet" href="./assets/css/button.css"> | ||
|
||
<!-- | ||
- google font link | ||
|
@@ -76,6 +77,19 @@ | |
</label> --> | ||
|
||
<body> | ||
|
||
|
||
|
||
<div class="navdiv" > | ||
|
||
|
||
|
||
<div><button class="login"><a href="login.html">Login</a></button></div> | ||
<div><button class="signup"><a href="signup.html">SignUp</a></button></div> | ||
|
||
</div> | ||
|
||
|
||
<div class="cursor"></div> | ||
<!-- BACKGROUND PARTICLES --> | ||
<!-- <div class="page-bg"></div> --> | ||
|
@@ -92,7 +106,7 @@ | |
<div class="abcd"> | ||
|
||
<main> | ||
|
||
|
||
<div class="main-content"> | ||
|
||
|
@@ -103,13 +117,21 @@ | |
<!-- | ||
- #NAVBAR | ||
--> | ||
|
||
|
||
|
||
|
||
<div class="heading"> | ||
<span>🕹️ </span><span>G</span><span>A</span><span>M</span><span>E</span><span>Z</span><span>O</span><span>N</span><span>E</span> | ||
|
||
</div> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<div class="search-container" id="search-container-id"> | ||
<input type="text" class="search-input" placeholder="Search" onkeyup="search_game()" id="searchbar"> | ||
<div class="search-btn"> | ||
|
@@ -200,8 +222,16 @@ <h1>Our Valuable Contributors</h1> | |
rel="noopener noreferrer" target="_blank"><i class="fa fa-github" aria-hidden="true"></i></a></li> | ||
|
||
<li><a href="https://twitter.com/kunj_199" aria-label="Follow me on Twitter" title="Twitter (External Link)" | ||
rel="noopener noreferrer" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" height="1em" aria-hidden="true" focusable="false" class="icon icon-twitter" viewBox="0 0 512 512"> | ||
<style>svg{fill:#ffffff}</style><path d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z"/></svg></a></li> | ||
rel="noopener noreferrer" target="_blank"><svg xmlns="http://www.w3.org/2000/svg" height="1em" | ||
aria-hidden="true" focusable="false" class="icon icon-twitter" viewBox="0 0 512 512"> | ||
<style> | ||
svg { | ||
fill: #ffffff | ||
} | ||
</style> | ||
<path | ||
d="M389.2 48h70.6L305.6 224.2 487 464H345L233.7 318.6 106.5 464H35.8L200.7 275.5 26.8 48H172.4L272.9 180.9 389.2 48zM364.4 421.8h39.1L151.1 88h-42L364.4 421.8z" /> | ||
</svg></a></li> | ||
|
||
<li><a href="https://www.linkedin.com/in/kunj199/" aria-label="Follow me on Linkedin" | ||
title="Linkedin (External Link)" rel="noopener noreferrer" target="_blank"><i | ||
|
@@ -236,7 +266,7 @@ <h1>Our Valuable Contributors</h1> | |
<script src="./assets/js/scroll.js"></script> | ||
<script src="./assets/js/contributors.js"></script> | ||
<script src="./assets/js/cursor_transition.js"></script> | ||
|
||
|
||
|
||
<script type="module" src="https://unpkg.com/[email protected]/dist/ionicons/ionicons.esm.js"></script> | ||
|
@@ -255,4 +285,4 @@ <h1>Our Valuable Contributors</h1> | |
|
||
</body> | ||
|
||
</html> | ||
</html> |
Oops, something went wrong.