fix footer. currently fixed to bottom, need to change

This commit is contained in:
len0rd 2018-07-25 16:29:40 -04:00
parent cadb699039
commit f858a9f7b1
2 changed files with 22 additions and 8 deletions

View file

@ -3,3 +3,12 @@
background-size: cover;
height: 50vh;
}
.page-footer {
padding-right: 0px;
padding-left: 0px;
}
.icon-footer {
padding: 5px;
}

View file

@ -1,21 +1,26 @@
<footer class="page-footer container-fluid">
<div class="container text-center bg-secondary">
<!-- you may need to remove 'fixed-bottom' if the footer is persisting on scroll-->
<footer class="page-footer container-fluid fixed-bottom">
<div class="container-fluid text-center bg-secondary">
<div class="row">
<div class="col-md-12 py-5">
<div class="mb-5 flex-center">
<a class="li-ic" href="https://github.com/len0rd">
<div class="col-md-12 py-3">
<div class="flex-center">
<a class="li-ic icon-footer" href="https://github.com/len0rd">
<i class="fab fa-github white-text fa-2x" style="color:white"></i>
</a>
<a class="li-ic" href="https://www.youtube.com/channel/UCwGDckTCkqqW5W8JcRrxELA">
<a class="li-ic icon-footer" href="https://www.youtube.com/channel/UCwGDckTCkqqW5W8JcRrxELA">
<i class="fab fa-youtube fa-lg white-text fa-2x" style="color:white"></i>
</a>
<a class="li-ic" href="/contact">
<a class="li-ic icon-footer" href="/contact">
<i class="fas fa-at fa-lg white-text fa-2x" style="color:white"></i>
</a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="footer-copyright text-center text-white">len0rdsNet 2018</div>
</div>
</div>
</div>
<div class="footer-copyright text-center text-white bg-dark py-3">len0rdsNet 2018</div>
</footer>