Skip to content

Commit

Permalink
upload
Browse files Browse the repository at this point in the history
  • Loading branch information
engrshuvodas committed Aug 25, 2023
1 parent 8393921 commit d672a71
Show file tree
Hide file tree
Showing 19 changed files with 465 additions and 0 deletions.
6 changes: 6 additions & 0 deletions css/all.min.css

Large diffs are not rendered by default.

138 changes: 138 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,138 @@
*{
padding: 0;
margin: 0;
}

body{
font-family: 'Open Sans', sans-serif;
}
a{
text-decoration: none;
}
.container{
margin: 0 auto;
width: 500px;
background: #fff;
box-shadow: 0px 0px 12px 4px rgba(0,0,0,0.09);
padding: 40px 30px;
box-sizing: border-box;
border-radius: 5px;
}
nav{
height: 80px;
width: 100%;
background: #fff;
box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.05);
display: flex;
position: relative;
}
nav img{
width: 150px;
align-self: center;
left: 50%;
top: 50%;
position: absolute;
transform: translate(-50%,-50%);

}
.wrapper h1{
color: #85377b;
font-weight: 700;

}
.wrapper h3{
color: #999;
font-weight: 300;
font-size: 16px;
margin-bottom: 30px;
}
.wrapper .google{
width: 100%;
padding: 15px;
box-sizing: border-box;
background: #fff;
box-shadow: 0 0 2px 0 rgb(0 0 0 / 12%), 0 2px 2px 0 rgb(0 0 0 / 24%);
border-radius: 10px;
margin-bottom: 25px;
transition: .4s;
display: flex;
}
.wrapper .google h4{
color: #767676;
}
.wrapper .google:hover{
background: #f5f5f5;
}
.wrapper .google:hover h4{
color: #85377b;
}
.wrapper .logo{
width: 30%;
}
.wrapper img{
width: 20px;
text-align: left;
}
.wrapper .text{
width: 70%;
text-align: left;
}
.wrapper .facebook{
width: 100%;
padding: 15px;
box-sizing: border-box;
background: #1877f2;
border-radius: 10px;
color: #fff;
margin-bottom: 25px;
transition: .4s;
display: flex;
}
.wrapper .facebook:hover{
background: #60a2f6;
box-shadow: 0 0.1rem 0.5rem rgb(0 0 0 / 15%);
color: #85377b;
}
.wrapper .log_in{
width: 100%;
padding: 15px;
box-sizing: border-box;
background: #85377b;
border-radius: 10px;
color: #fff;
margin-bottom: 25px;
transition: .4s;
text-align: center;
}
.wrapper .log_in:hover{
background: #deb0d8;
box-shadow: 0 0.1rem 0.5rem rgb(0 0 0 / 15%);
color: #85377b;
}
.wrapper .sign_up{
width: 100%;
padding: 15px;
box-sizing: border-box;
background: #fff;
border: 1px solid #85377b;
border-radius: 10px;
color: #85377b;
margin-bottom: 25px;
transition: .4s;
text-align: center;
}
.wrapper .sign_up:hover{
background: #deb0d8;
border: 1px solid #deb0d8;
box-shadow: 0 0.1rem 0.5rem rgb(0 0 0 / 15%);
color: #85377b;
}
.wrapper p{
color: #999;
font-weight: 300;
font-size: 12px;
margin-top: 10px;
}
.wrapper p strong{
color: #85377b;
}
89 changes: 89 additions & 0 deletions css/style2.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
*{
padding: 0;
margin: 0;
}
body{
font-family: 'Open Sans', sans-serif;
}
a{
text-decoration: none;
}
nav{
height: 80px;
width: 100%;
background: #fff;
box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.05);
display: flex;
position: relative;
}
nav img{
width: 150px;
align-self: center;
left: 50%;
top: 50%;
position: absolute;
transform: translate(-50%,-50%);

}
.wrapper{
width: 400px;
background: #fff;
box-shadow: 0px 0px 12px 4px rgba(0,0,0,0.09);
margin: 0 auto;
padding: 40px;
box-sizing: border-box;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
.wrapper h1{
color: #85377b;
font-weight: 700;

}

.wrapper form input{
width: 100%;
padding: 10px;
box-sizing: border-box;
border: 1px solid #999;
border-radius: 5px;
color: #999;
font-weight: 300;
font-size: 14px;
}
.wrapper h4{
color: #17a2b8;
font-weight: 300;
font-size: 12px;
margin-bottom: 10px;
}
.wrapper a{
display: inline-block;
width: 100%;
padding: 10px;
box-sizing: border-box;
background: #85377b;
border: 1px solid #85377b;
border-radius: 5px;
color: #fff;
transition: .6s;
font-weight: 300;
font-size: 16px;
text-align: center;
}
.wrapper a:hover{
background: #deb0d8;
color: #85377b;
border: 1px solid #deb0d8;
}
.wrapper p{
color: #999;
font-weight: 300;
font-size: 12px;
margin-top: 10px;
}
.wrapper p strong{
color: #85377b;
}
96 changes: 96 additions & 0 deletions css/style3.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
*{
padding: 0;
margin: 0;
}

body{
font-family: 'Open Sans', sans-serif;
}
a{
text-decoration: none;
}
.container{
margin: 0 auto;
width: 500px;
background: #fff;
box-shadow: 0px 0px 12px 4px rgba(0,0,0,0.09);
padding: 40px 30px;
box-sizing: border-box;
border-radius: 5px;
}
nav{
height: 80px;
width: 100%;
background: #fff;
box-shadow: 0px 5px 12px 0px rgba(0,0,0,0.05);
display: flex;
position: relative;
}
nav img{
width: 150px;
align-self: center;
left: 50%;
top: 50%;
position: absolute;
transform: translate(-50%,-50%);

}
.wrapper h2{
color: #85377b;
}
.wrapper h3{
color: #999;
font-weight: 300;
font-size: 16px;
margin-bottom: 30px;
}
.wrapper form{
padding: 0 30px;
box-sizing: border-box;
}
.wrapper input{
width: 100%;
padding: 10px;
box-sizing: border-box;
border: 1px solid #999;
border-radius: 5px;
color: #999;
font-weight: 300;
font-size: 14px;
}
.wrapper .information{
display: flex;
justify-content: space-between;
}
.wrapper .information input{
width: 48%;
}
.wrapper a{
display: inline-block;
width: 100%;
padding: 10px;
box-sizing: border-box;
background: #85377b;
border: 1px solid #85377b;
border-radius: 5px;
color: #fff;
transition: .6s;
font-weight: 300;
font-size: 16px;
text-align: center;
}
.wrapper a:hover{
background: #deb0d8;
color: #85377b;
border: 1px solid #deb0d8;
}
.wrapper p{
color: #999;
font-weight: 300;
font-size: 12px;
margin-top: 10px;
}
.wrapper p strong{
color: #85377b;
cursor: pointer;
}
Binary file added images/Logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/download.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/facebook-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/google-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Registration From</title>
<link rel="stylesheet" type="text/css" href="css/style.css">

<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@600;700&display=swap" rel="stylesheet">

</head>
<body>
<nav>
<img src="images/Logo.png">
</nav>
<div class="wrapper">
<div class="container">
<h1>Welcome!</h1>
<h3>Sign up or log in to continue</h3>
<a href="#">
<div class="google">
<div class="logo">
<img src="images/download.png">
</div>
<div class="text">
<h4>Continue with Google</h4>
</div>
</div>
</a>
<a href="#">
<div class="facebook">
<div class="logo">
<img src="images/facebook-logo.png">
</div>
<div class="text">
<h4>Continue with Facebook</h4>
</div>
</div>
</a>
<a href="index2.html">
<div class="log_in">
<h4>Log In</h4>
</div>
</a>
<a href="index3.html">
<div class="sign_up">
<h4>Sign Up</h4>
</div>
</a>
<p>
By signing up, you agree to our <strong>Terms and Conditions</strong> and <strong>Privacy Policy</strong>.
</p>
</div>
</div>
</body>
</html>
Loading

0 comments on commit d672a71

Please sign in to comment.