Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
</ul>
</div>
<div class="copyright">
©2020|Made By Shahbaz Alam
©2025|Made By Jyoti Gautam
</div>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,22 @@ body{
margin: 50px auto;
}

.wrapper .header .top,
/* .wrapper .header .top,
.wrapper .signup{
background: #fff;
border: 1px solid #e6e6e6;
border-radius: 1px;
padding: 40px 40px 20px;
} */
/* using kinear gradient for background color like instagram real logo color */
.wrapper .header .top,
.wrapper .signup {
background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af, #515bd4);
border: 1px solid #e6e6e6;
border-radius: 10px;
padding: 40px 40px 20px;
color: white;
}

.wrapper .header .logo img{
display: block;
margin: 0 auto 35px;
Expand Down Expand Up @@ -98,7 +106,7 @@ body{
}

.wrapper .dif .fb p{
color: #385185;
color: #fdfeff;
font-weight: 500;
margin-left: 10px;
}
Expand All @@ -110,7 +118,7 @@ body{
}

.wrapper .dif .forgot a{
color: #003569;
color: #060606;
}

.wrapper .signup{
Expand Down Expand Up @@ -160,4 +168,37 @@ body{

.footer .copyright{
color: #999;
}
/* make log in with facebook clickable */
.fb-link {
display: inline-block;
text-decoration: none;
}

.fb {
display: flex;
align-items: center;
justify-content: center;
background-color: #1f8ddc;
color: rgb(255, 255, 255);
padding: 10px 20px;
border-radius: 5px;
transition: background-color 0.3s ease;
cursor: pointer;
}

.fb:hover {
background-color: #bac7e0;
}

.fb img {
width: 20px;
height: 20px;
margin-right: 10px;
}

.fb p {
margin: 0;
font-weight: bold;
font-size: 14px;
}