-
Notifications
You must be signed in to change notification settings - Fork 0
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
Showing
7 changed files
with
161 additions
and
65 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
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
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 |
---|---|---|
@@ -1,3 +1,9 @@ | ||
document.querySelector(".login button").addEventListener("click",function(){ | ||
document.querySelector("a").href="login.html"; | ||
}) | ||
// document.querySelector(".login button").addEventListener("click",function(){ | ||
// document.querySelector("a").href="login.html"; | ||
// }) | ||
|
||
// document.querySelectorAll(".text-end button")[i].addEventListener("click",function(){ | ||
// location.href="http://127.0.0.1:3000/project/E-smart/login.html"; | ||
// window.location="http://127.0.0.1:3000/project/E-smart/login.html"; | ||
|
||
// }); |
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 |
---|---|---|
@@ -1,15 +1,96 @@ | ||
*{ | ||
margin: 0; | ||
padding: 0; | ||
box-sizing: border-box; | ||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; | ||
} | ||
body{ | ||
background-color: aqua; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
min-height: 100vh; | ||
background: url(./night.jpg) no-repeat; | ||
background-size: cover; | ||
background-position: center; | ||
} | ||
|
||
.card-container{ | ||
background-color: black; | ||
.wrapper{ | ||
width: 420px; | ||
background: transparent; | ||
border:2px solid rgba(255, 255, 255, .2); | ||
backdrop-filter: blur(20px); | ||
box-shadow: 0 0 10px rgba(0, 0, 0, .2); | ||
color: #fff; | ||
border-radius: 10px; | ||
padding: 30px 40px; | ||
} | ||
.wrapper h1{ | ||
font-size: 36px; | ||
text-align: center; | ||
} | ||
.wrapper .input-box{ | ||
width: 100%; | ||
height: 60px; | ||
position: relative; | ||
margin-top: 20px; | ||
} | ||
.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 40px 20px 20px; | ||
} | ||
.input-box input::placeholder{ | ||
color: #fff; | ||
|
||
.row{ | ||
background-color: blue; | ||
} | ||
.wrapper .remember-forgot{ | ||
display: flex; | ||
justify-content: space-between; | ||
font-size: 14.5px; | ||
margin: 15px 5px 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; | ||
color: red; | ||
} | ||
.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; | ||
color: #333; | ||
font-weight: 700; | ||
} | ||
.wrapper .register-link{ | ||
font-size: 14.5px; | ||
text-align: center; | ||
margin: 20px 0 15px; | ||
|
||
.col{ | ||
background-color: brown; | ||
} | ||
.register-link p a{ | ||
color: #fff; | ||
text-decoration: none; | ||
font-weight: 600; | ||
} | ||
.register-link p a:hover{ | ||
text-decoration: underline; | ||
color: blue; | ||
} |
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