-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #61 from shairanshrawat/main
[GSSoC'21] Creating the footer #18
- Loading branch information
Showing
4 changed files
with
387 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Document</title> | ||
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous"> | ||
<link rel="stylesheet" href="style.css"> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-BmbxuPwQa2lc/FVzBcNJ7UAyJxM6wuqIj61tLrc4wSX0szH/Ev+nYRRuWlolflfl" crossorigin="anonymous"> | ||
<script src="https://code.jquery.com/jquery-3.3.1.js" integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60=" crossorigin="anonymous"></script> | ||
</head> | ||
<body> | ||
|
||
<footer class="footer-section"> | ||
<p class="footer-heading colo-white">Thank you for supporting the community!</p> | ||
|
||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-sm"> | ||
<img src="./assests/Main-Logo.png" alt="" width="55%" class="img-main"> | ||
</div> | ||
<div class="col-sm "> | ||
<p class=" colo-white col2-sub align-centre">Chords is a browser extension which will stream music according to the mood of the user.</p> | ||
|
||
</div> | ||
<div class="col-sm colo-white img-round"> | ||
<div> | ||
<h4 class="algn-centre col3-sub align-centre">Project Administrator</h4> | ||
<img src="./assests/52379890.jpg" alt="" width="20%"> | ||
<p class="name"> Ayush</p><br> | ||
<p class="connect align-centre">Connect with me</p> | ||
</div><br> | ||
<div class="social-media"> | ||
<ul> | ||
<li> | ||
<a href="http://linkedin.com/in/connectAyush"><i class="fab fa-linkedin-in icon"></i></a></li> | ||
|
||
</li> | ||
<li> | ||
<a href="https://github.com/Ayush-projects"><i class="fab fa-github icon"></i></a> | ||
</li> | ||
|
||
<li> | ||
<a href="#"> | ||
<i class="fab fa-discord icon"></i> </a> | ||
<li> | ||
<a href="mailto: [email protected]"><i class="fab fa-google-plus-g icon"></i></a></li> | ||
</ul> | ||
</div> | ||
|
||
</div> | ||
</div> | ||
</div><br> | ||
|
||
|
||
</footer> | ||
</body> | ||
</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 |
---|---|---|
@@ -0,0 +1,328 @@ | ||
|
||
.footer-section { | ||
margin: 0; | ||
padding:0; | ||
background: | ||
#121640; | ||
} | ||
.colo-white{ | ||
color: #fff; | ||
} | ||
/* img{ | ||
border-radius:50%; | ||
} */ | ||
.align-centre{ | ||
align-items: center; | ||
justify-content: center; | ||
display: flex; | ||
} | ||
.col2-sub{ | ||
margin-top: 60px; | ||
font-size: 20px; | ||
font-weight: 500; | ||
} | ||
|
||
.footer-heading{ | ||
|
||
font-size: 30px; | ||
border-top: 2px solid #fff; | ||
align-items: center; | ||
justify-content: center; | ||
/* width: 95%; | ||
height: 30vh; */ | ||
display: flex; | ||
padding-top: 20px; | ||
margin-bottom: 30px; | ||
|
||
} | ||
.img-round img{ | ||
border-radius: 50%; | ||
float: left; | ||
margin-left: 110px; | ||
} | ||
.name{ | ||
margin-left: 120px !important; | ||
/* margin-top: 3px; */ | ||
font-size: 30px; | ||
font-weight: 300; | ||
|
||
|
||
} | ||
.connect{ | ||
font-size: 20px; | ||
} | ||
|
||
|
||
.social-media ul { | ||
|
||
position: absolute; | ||
display: flex; | ||
right: 5%; | ||
transform: translate(-50%, -50%); | ||
} | ||
|
||
ul li { | ||
list-style: none; | ||
} | ||
|
||
ul li a { | ||
width: 42px; | ||
height: 40px; | ||
background-color: #fff; | ||
text-align: center; | ||
line-height: 33px; | ||
font-size: 22px; | ||
margin: 0 10px; | ||
display: block; | ||
border-radius: 50%; | ||
position: relative; | ||
overflow: hidden; | ||
border: 3px solid #fff; | ||
z-index: 1; | ||
} | ||
|
||
ul li a .icon { | ||
position: relative; | ||
color: #262626; | ||
transition: .5s; | ||
z-index: 3; | ||
} | ||
|
||
ul li a:hover .icon { | ||
color: #fff; | ||
transform: rotateY(360deg); | ||
} | ||
|
||
ul li a:before { | ||
content: ""; | ||
position: absolute; | ||
top: 100%; | ||
left: 0; | ||
width: 100%; | ||
height: 100%; | ||
background: #f00; | ||
transition: .5s; | ||
z-index: 2; | ||
} | ||
|
||
ul li a:hover:before { | ||
top: 0; | ||
} | ||
|
||
ul li:nth-child(1) a:before{ | ||
background: #0077b5; | ||
} | ||
|
||
ul li:nth-child(2) a:before{ | ||
background: #333; | ||
} | ||
|
||
ul li:nth-child(3) a:before { | ||
background: #99aab5; | ||
} | ||
|
||
ul li:nth-child(4) a:before { | ||
background: #dd4b39; | ||
} | ||
|
||
|
||
/* ******************************* Media QUERY **************************** */ | ||
|
||
@media (max-width: 375px) and (min-width:100px){ | ||
.footer-heading{ | ||
font-size: 16px; | ||
/* margin-left: 38px; */ | ||
/* margin-right: 40px; */ | ||
align-content: center; | ||
justify-content: center; | ||
display: flex; | ||
} | ||
.img-main{ | ||
|
||
width: 60%; | ||
margin-left: 54px; | ||
} | ||
.col2-sub{ | ||
margin-top: 10px; | ||
font-size: 18px; | ||
margin-left: 20px; | ||
margin-bottom: 34px; | ||
} | ||
.col3-sub{ | ||
margin-bottom: 10px; | ||
} | ||
.img-round img{ | ||
margin-left: 60px; | ||
} | ||
.name{ | ||
margin-top: -18px; | ||
margin-left: 20px !important; | ||
} | ||
.social-media ul{ | ||
left: 111px; | ||
bottom: -6px; | ||
} | ||
|
||
} | ||
@media (max-width: 425px) and (min-width:375px){ | ||
.footer-heading{ | ||
font-size: 16px; | ||
/* margin-left: 38px; */ | ||
/* margin-right: 40px; */ | ||
align-content: center; | ||
justify-content: center; | ||
display: flex; | ||
} | ||
.img-main{ | ||
|
||
width: 60%; | ||
margin-left: 54px; | ||
} | ||
.col2-sub{ | ||
margin-top: 10px; | ||
font-size: 18px; | ||
margin-left: 20px; | ||
margin-bottom: 34px; | ||
} | ||
.col3-sub{ | ||
margin-bottom: 10px; | ||
} | ||
.img-round img{ | ||
margin-left: 60px; | ||
} | ||
.name{ | ||
margin-top: -18px; | ||
margin-left: 20px !important; | ||
} | ||
.social-media ul{ | ||
left: 138px; | ||
bottom: -31px; | ||
} | ||
|
||
} | ||
@media (max-width: 760px) and (min-width:425px){ | ||
.footer-heading{ | ||
font-size: 20px; | ||
/* margin-left: 38px; */ | ||
/* margin-right: 40px; */ | ||
align-content: center; | ||
justify-content: center; | ||
display: flex; | ||
} | ||
.img-main{ | ||
|
||
width: 60%; | ||
margin-left: 54px; | ||
} | ||
.col2-sub{ | ||
margin-top: 10px; | ||
font-size: 18px; | ||
margin-left: 20px; | ||
margin-bottom: 34px; | ||
} | ||
.col3-sub{ | ||
margin-bottom: 10px; | ||
} | ||
.img-round img{ | ||
margin-left: 60px; | ||
} | ||
.name{ | ||
margin-top: -18px; | ||
margin-left: 20px !important; | ||
} | ||
.social-media ul{ | ||
left: 173px; | ||
bottom: -71px; | ||
} | ||
|
||
} | ||
@media (max-width: 1023px) and (min-width:768px){ | ||
.footer-heading{ | ||
font-size: 20px; | ||
/* margin-left: 38px; */ | ||
/* margin-right: 40px; */ | ||
align-content: center; | ||
justify-content: center; | ||
display: flex; | ||
} | ||
.img-main{ | ||
|
||
width: 80%; | ||
margin-left: 19px; | ||
} | ||
.col2-sub{ | ||
margin-top: 31px; | ||
font-size: 15px; | ||
margin-left: 20px; | ||
margin-bottom: 34px; | ||
} | ||
.col3-sub{ | ||
margin-bottom: 12px; | ||
font-size: 18px; | ||
} | ||
.img-round img{ | ||
margin-left: 46px; | ||
margin-top: 10px; | ||
width: 25%; | ||
} | ||
.connect{ | ||
font-size: 17px; | ||
margin-left: 27px; | ||
} | ||
.name{ | ||
margin-top: -18px; | ||
margin-left: 20px !important; | ||
} | ||
.social-media ul{ | ||
left: 560px; | ||
/* bottom: -71px; */ | ||
|
||
} | ||
|
||
} | ||
|
||
|
||
@media (max-width: 1440px) and (min-width:1024px){ | ||
.footer-heading{ | ||
font-size: 20px; | ||
/* margin-left: 38px; */ | ||
/* margin-right: 40px; */ | ||
align-content: center; | ||
justify-content: center; | ||
display: flex; | ||
} | ||
.img-main{ | ||
|
||
width: 80%; | ||
margin-left: 19px; | ||
} | ||
.col2-sub{ | ||
margin-top: 31px; | ||
font-size: 15px; | ||
margin-left: 20px; | ||
margin-bottom: 34px; | ||
} | ||
.col3-sub{ | ||
margin-bottom: 12px; | ||
font-size: 18px; | ||
} | ||
.img-round img{ | ||
margin-left: 46px; | ||
margin-top: 10px; | ||
width: 25%; | ||
} | ||
.connect{ | ||
font-size: 17px; | ||
margin-top: 20px; | ||
} | ||
.name{ | ||
margin-top: -2px; | ||
|
||
} | ||
.social-media ul{ | ||
left: 783px; | ||
/* bottom: -71px; */ | ||
|
||
} | ||
|
||
} |