mirror of
https://github.com/len0rd/personal-website.git
synced 2025-03-01 03:51:57 -05:00
fix footer. currently fixed to bottom, need to change
This commit is contained in:
parent
cadb699039
commit
f858a9f7b1
|
@ -3,3 +3,12 @@
|
||||||
background-size: cover;
|
background-size: cover;
|
||||||
height: 50vh;
|
height: 50vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.page-footer {
|
||||||
|
padding-right: 0px;
|
||||||
|
padding-left: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-footer {
|
||||||
|
padding: 5px;
|
||||||
|
}
|
|
@ -1,21 +1,26 @@
|
||||||
<footer class="page-footer container-fluid">
|
<!-- you may need to remove 'fixed-bottom' if the footer is persisting on scroll-->
|
||||||
<div class="container text-center bg-secondary">
|
<footer class="page-footer container-fluid fixed-bottom">
|
||||||
|
<div class="container-fluid text-center bg-secondary">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-md-12 py-5">
|
<div class="col-md-12 py-3">
|
||||||
<div class="mb-5 flex-center">
|
<div class="flex-center">
|
||||||
<a class="li-ic" href="https://github.com/len0rd">
|
<a class="li-ic icon-footer" href="https://github.com/len0rd">
|
||||||
<i class="fab fa-github white-text fa-2x" style="color:white"></i>
|
<i class="fab fa-github white-text fa-2x" style="color:white"></i>
|
||||||
</a>
|
</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>
|
<i class="fab fa-youtube fa-lg white-text fa-2x" style="color:white"></i>
|
||||||
</a>
|
</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>
|
<i class="fas fa-at fa-lg white-text fa-2x" style="color:white"></i>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</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>
|
||||||
|
|
||||||
<div class="footer-copyright text-center text-white bg-dark py-3">len0rdsNet 2018</div>
|
|
||||||
</footer>
|
</footer>
|
Loading…
Reference in a new issue