initial commit
This commit is contained in:
114
index.css
Normal file
114
index.css
Normal file
@@ -0,0 +1,114 @@
|
|||||||
|
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200&display=swap');
|
||||||
|
*{
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
font-family: 'poppins',sans-serif;
|
||||||
|
}
|
||||||
|
section{
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
min-height: 100vh;
|
||||||
|
width: 100%;
|
||||||
|
|
||||||
|
background: url('https://static.vecteezy.com/system/resources/previews/001/902/513/large_2x/cool-futuristic-triangle-tunnel-3d-illustration-background-wallpaper-design-artwork-free-photo.jpg')no-repeat;
|
||||||
|
background-position: center;
|
||||||
|
background-size: cover;
|
||||||
|
}
|
||||||
|
.form-box{
|
||||||
|
position: relative;
|
||||||
|
width: 400px;
|
||||||
|
height: 450px;
|
||||||
|
background: transparent;
|
||||||
|
border: 2px solid rgba(255,255,255,0.5);
|
||||||
|
border-radius: 20px;
|
||||||
|
backdrop-filter: blur(10px);
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
h2{
|
||||||
|
font-size: 2em;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.inputbox{
|
||||||
|
position: relative;
|
||||||
|
margin: 30px 0;
|
||||||
|
width: 310px;
|
||||||
|
border-bottom: 2px solid #fff;
|
||||||
|
}
|
||||||
|
.inputbox label{
|
||||||
|
position: absolute;
|
||||||
|
top: 50%;
|
||||||
|
left: 5px;
|
||||||
|
transform: translateY(-50%);
|
||||||
|
color: #fff;
|
||||||
|
font-size: 1em;
|
||||||
|
pointer-events: none;
|
||||||
|
transition: .5s;
|
||||||
|
}
|
||||||
|
input:focus ~ label,
|
||||||
|
input:valid ~ label{
|
||||||
|
top: -5px;
|
||||||
|
}
|
||||||
|
.inputbox input{
|
||||||
|
width: 100%;
|
||||||
|
height: 50px;
|
||||||
|
background: transparent;
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
font-size: 1em;
|
||||||
|
padding:0 35px 0 5px;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
.inputbox ion-icon{
|
||||||
|
position: absolute;
|
||||||
|
right: 8px;
|
||||||
|
color: #fff;
|
||||||
|
font-size: 1.2em;
|
||||||
|
top: 20px;
|
||||||
|
}
|
||||||
|
.forget{
|
||||||
|
margin: -15px 0 15px;
|
||||||
|
font-size: .9em;
|
||||||
|
color: #fff;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
.forget label input{
|
||||||
|
margin-right: 3px;
|
||||||
|
}
|
||||||
|
.forget label a{
|
||||||
|
color: #fff;
|
||||||
|
text-decoration: none;
|
||||||
|
}
|
||||||
|
.forget label a:hover{
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
button{
|
||||||
|
width: 100%;
|
||||||
|
height: 40px;
|
||||||
|
border-radius: 40px;
|
||||||
|
background: #fff;
|
||||||
|
border: none;
|
||||||
|
outline: none;
|
||||||
|
cursor: pointer;
|
||||||
|
font-size: 1em;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.register{
|
||||||
|
font-size: .9em;
|
||||||
|
color: #fff;
|
||||||
|
text-align: center;
|
||||||
|
margin: 25px 0 10px;
|
||||||
|
}
|
||||||
|
.register p a{
|
||||||
|
text-decoration: none;
|
||||||
|
color: #fff;
|
||||||
|
font-weight: 600;
|
||||||
|
}
|
||||||
|
.register p a:hover{
|
||||||
|
text-decoration: underline;
|
||||||
|
|
||||||
|
}
|
||||||
38
login.html
Normal file
38
login.html
Normal file
@@ -0,0 +1,38 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<link rel="stylesheet" href="index.css">
|
||||||
|
<title>Big Big login bonitin</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<section>
|
||||||
|
<div class="form-box">
|
||||||
|
<div class="form-value">
|
||||||
|
<form action="">
|
||||||
|
<h2>Login</h2>
|
||||||
|
<div class="inputbox">
|
||||||
|
<ion-icon name="mail-outline"></ion-icon>
|
||||||
|
<input type="email" required>
|
||||||
|
<label for="">Email</label>
|
||||||
|
</div>
|
||||||
|
<div class="inputbox">
|
||||||
|
<ion-icon name="lock-closed-outline"></ion-icon>
|
||||||
|
<input type="password" required>
|
||||||
|
<label for="">Password</label>
|
||||||
|
</div>
|
||||||
|
<div class="forget">
|
||||||
|
<label for=""><input type="checkbox">Remember Me <a href=""#>Forgot Password?</a></label>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
<button>Log in</button>
|
||||||
|
<div class="register">
|
||||||
|
<p>Don't have a account <a href="#">register</a></p>
|
||||||
|
</div>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
<script type="module" src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.esm.js"></script>
|
||||||
|
<script nomodule src="https://unpkg.com/ionicons@5.5.2/dist/ionicons/ionicons.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
Reference in New Issue
Block a user