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
67 changes: 51 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
<title>SpacexMK</title>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.7/css/all.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="shortcut icon" href="images/fav.png" type="image/x-icon">
<link rel="stylesheet" href="main.css"/>

Expand Down Expand Up @@ -110,22 +111,56 @@
</div>
</div>
</div>
<footer>
<div class="sm-handle">
<a href="https://linkedin.com/in/manan-kohli" class="sm-button" target="_blank">

<i class="fab fa-linkedin"> </i>
</a>
<a href="https://github.com/manankohlii" class="sm-button" target="_blank">
<i class="fab fa-github"></i>
</a>
<a href="https://twitter.com/manankohlii" class="sm-button" target="_blank">
<i class="fab fa-twitter"></i>
</a>
</div>
<br>
<p class="copyright">&copy Copyright <script>document.write(new Date().getFullYear())</script> |❤️Manan Kohli</a></p>
</footer>
<footer class="footer-distributed">

<div class="footer-left">

<h3>Space<span>XMK</span></h3>

<p class="footer-links">
<a href="#">Launches</a>
·
<a href="#">Cores</a>
·
<a href="#">Rockets</a>

</p>

<p class="footer-company-name">&copy; Copyright 2021 |❤️Manan Kohli</p>
</div>

<div class="footer-center">

<div>
<i class="fa fa-map-marker"></i>
<p> Delhi, India</p>
</div>

<div>
<i class="fa fa-envelope"></i>
<p><a href="mailto:support@company.com">manankohli77@gmail.com</a></p>
</div>

</div>

<div class="footer-right">

<p class="footer-company-about">
<span>About Us</span>
Uses the freely available SpacexAPI and basic HTML CSS and JS to give details of missions.
</p>

<div class="footer-icons">

<a href="https://twitter.com/manankohlii" target="_blank"><i class="fa fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/manan-kohli/" target="_blank"><i class="fa fa-linkedin"></i></a>
<a href="https://github.com/manankohlii" target="_blank"><i class="fa fa-github"></i></a>

</div>

</div>

</footer>
</div>

<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
Expand Down
191 changes: 160 additions & 31 deletions main.css
Original file line number Diff line number Diff line change
Expand Up @@ -462,40 +462,169 @@ main {
}

/*Footer*/
footer {
.footer-distributed{
background-color: #000000;
animation: glow 3s ease-in-out infinite alternate;
background: linear-gradient(90deg, #ff8633 -40%, black 50%, #ff8633 140%);
width: 100%;
text-align: left;
font: bold 16px sans-serif;
padding: 25px 25px;
margin-top: 80px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
display: inline-block;
vertical-align: top;
}

.footer-distributed .footer-left{
width: 40%;
}

.footer-distributed h3{
color: #ffffff;
font: normal 36px 'Cookie', cursive;
margin: 0;
}

.footer-distributed h3 span{
color: #bd0606;
}


.footer-distributed .footer-links{
color: #ffffff;
margin: 20px 0 12px;
padding: 0;
}

.footer-distributed .footer-links a{
display:inline-block;
line-height: 1.8;
text-decoration: none;
color: inherit;
}

.footer-distributed .footer-company-name{
color: #8f9296;
font-size: 14px;
font-weight: normal;
margin: 0;
word-spacing: 2px;
letter-spacing: 1.5px;
}


.footer-distributed .footer-center{
width: 35%;
}

.footer-distributed .footer-center i{
background-color: #33383b;
color: #ffffff;
font-size: 25px;
width: 38px;
height: 38px;
border-radius: 50%;
text-align: center;
padding-bottom: 15px;
}
.sm-handle {
display: flex;
padding-top: 2rem;
justify-content: center;
}
.sm-button {
margin: 0px 10px 0px;
border-radius: 100%;
border: 1px solid #bababa;
width: 2rem;
height: 2rem;
display: flex;
align-items: center;
justify-content: center;
line-height: 42px;
margin: 10px 15px;
vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope{
font-size: 17px;
line-height: 38px;
}

.footer-distributed .footer-center p{
display: inline-block;
color: #ffffff;
vertical-align: middle;
margin:0;
}

.footer-distributed .footer-center p span{
display:block;
font-weight: normal;
font-size:14px;
line-height:2;
}

.footer-distributed .footer-center p a{
color: #5383d3;
text-decoration: none;;
}

.footer-distributed .footer-right{
width: 20%;
}

.footer-distributed .footer-company-about{
line-height: 20px;
color: #92999f;
font-size: 13px;
font-weight: normal;
margin: 0;
}

.footer-distributed .footer-company-about span{
display: block;
color: #ffffff;
font-size: 14px;
font-weight: bold;
margin-bottom: 20px;
}

.footer-distributed .footer-icons{
margin-top: 25px;
}

.footer-distributed .footer-icons a{
display: inline-block;
width: 35px;
height: 35px;
cursor: pointer;
}
.sm-button:hover {
background-color: #33383b;
border-radius: 2px;

font-size: 20px;
color: #ffffff;
text-align: center;
line-height: 35px;

margin-right: 3px;
margin-bottom: 5px;
}
.footer-distributed .footer-icons a:hover{
background: linear-gradient(to right, #6500ff, #f3df27);
}

.fab {
color: #fff;
font-size: 16px;
}
.copyright {
font-size: 10px;
word-spacing: 2px;
color: white;
letter-spacing: 1.5px;
}
}

@media (max-width: 880px) {

.footer-distributed{
font: bold 14px sans-serif;

}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right{
display: block;
width: 100%;
margin-bottom: 40px;
text-align: center;
}

.footer-distributed .footer-center i{
margin-left: 0;
}
.main {
line-height: normal;
font-size: auto;
}

}