Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file removed Login/image/facebookLogo.png
Binary file not shown.
Binary file removed Login/image/gitLogo.png
Binary file not shown.
Binary file removed Login/image/googleLogo.png
Binary file not shown.
63 changes: 34 additions & 29 deletions Login/login.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,92 +9,97 @@ html{
font-size: 20px;
}
body{
background: linear-gradient(to right, rgb(255, 255, 255) 57%, rgb(253, 132, 31) 43%);
background: linear-gradient(to right, #FFFFFF 57%, #FD841F 43%);
font-family: 'Actor';
font-weight: 400;
font-style: normal;
}
.wrepper{
.main-wrapper-for-login-blocks{
display: flex;
flex-direction: column;
width: 33%;
width: 490.77px;;
height: 100%;
margin-top: 4%;
margin-left: 10%;
}
.logo-snap{
display: block;
width: 10rem;
margin-bottom: 6%;
width: 200px;
margin-bottom: 33px;
}
.text-login{
font-size: 2.25rem;
margin-bottom: 3%;
margin-bottom: 25px;
}
.form-for-login label{
font-size: 1.75rem;
color: rgb(65,64,66);
color: #414042;
}
.form-for-login input{
width: 100%;
height: 2.8rem;
border-radius: 2rem;
width: 436.77px;
border-radius: 40px;
border: 1px solid #BCBEC0;
}
::placeholder{
padding-left: 5%;
padding: 19.15px 27px 18.29px 27px;
}
.form-for-login label[for=password]{
margin-top: 3%;
margin-top: 20px;
}
.text{
font-size: 1rem;
color: rgb(121,137,149);
color: #798995;
text-align: center;
}
.text a{
.link{
text-decoration: none;
color: rgb(70,86,133);
color: #465685;
}
.forgot-password{
margin: 3% auto 5%;
display: block;
font-size: 1rem;
margin-top: 18.18px;
margin-bottom: 32px;
text-align:justify;
}
.sign-in-button{
background-color: rgb(253, 132, 31);
color: white;
background-color: #FD841F;
color: #FFFFFF;
border: 0px;
border-radius: 40px;
font-size: 1.5rem;
width: 490.77px;
height: 56.73px;
cursor: pointer;
}
.continue-with{
margin: 10% auto 3%;
margin-top: 30px;
margin-bottom: 15px;
}
.wraper-for-buttons-register{
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
width: 490.77px;
}
.social-media-buttons{
display: flex;
justify-content: center;
align-items: center;
width: 7.6rem;
height: 2.85rem;
border-radius: 2rem;
width: 153px;
height: 56.73px;
border-radius: 40px;
border: 1px solid #BCBEC0;
background-color: rgb(255, 255, 255);
background-color: #FFFFFF;
cursor: pointer;
}
.proposition-for-account{
margin-top: 3%;
margin-top: 20px;
}
.bird-pict{
background-image: url(image/BirdPictureLogoPage.png);
background-size: cover;
position: absolute;
width: 27.75rem;
height: 26.1rem;
width: 600px;
height: 567px;
left: 46%;
top: 15%;
}
24 changes: 10 additions & 14 deletions Login/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,19 @@
<link href="https://fonts.googleapis.com/css2?family=Actor&display=swap" rel="stylesheet">
</head>
<body>
<div class="wrepper">
<div class="main-wrapper-for-login-blocks">
<img src="image/SnapLogoPage.png" class="logo-snap" alt="LogoSnap">
<h1 class="text-login">Login</h1>
<div class="forms-container">
<form class="form-for-login">
<label for="email">Email</label>
<input type="email" required name="userEmail" placeholder="username@gmail.com" size="18"/>
<input type="email" required name="userEmail" placeholder="username@gmail.com" />
<label for="password">Password</label>
<input type="password" required name="password" placeholder="Password" size="18" />
<div class="forgot-password text">
<a href="" >Forgot Password?</a>
</div>
<input type="submit" value="Sign in" class="sign-in-button">
<input type="password" required name="password" placeholder="Password" />
<a href="" class="link forgot-password" >Forgot Password?</a>
<button class="sign-in-button">Sign in</button>
</form>
<div class="continue-with text">or continue with
</div>
<p class="text continue-with">or continue with
</p>
<div class='wraper-for-buttons-register'>
<a href="" class="social-media-buttons">
<img src="image/googleLogo.svg" alt="google">
Expand All @@ -34,10 +31,9 @@ <h1 class="text-login">Login</h1>
<img src="image/facebookLogo.svg" alt="facebook">
</a>
</div>
<div class="proposition-for-account text">Don't have an account yet?
<a href="register.html">Register for free</a>
</div>
</div>
<p class="proposition-for-account text">Don't have an account yet?
<a href="register.html" class="link">Register for free</a>
</p>
</div>
<div class="bird-pict">
</div>
Expand Down