51 lines
940 B
Plaintext
51 lines
940 B
Plaintext
<footer class="footer np-subpage-container">
|
|
<div class="footer-left">
|
|
© {{ "now" | date: "%Y" }} Quantuvos Inc. All Right Reserved.
|
|
</div>
|
|
<div class="footer-right">
|
|
<a class="footer-element" href="">
|
|
Help
|
|
</a>
|
|
<a class="footer-element" href="">
|
|
Privacy Policy
|
|
</a>
|
|
<a class="footer-element" href="">
|
|
Cookie Notice
|
|
</a>
|
|
<a class="footer-element" href="">
|
|
Security
|
|
</a>
|
|
<a class="footer-element" href="">
|
|
Terms of Use
|
|
</a>
|
|
</div>
|
|
</footer>
|
|
|
|
<style>
|
|
.footer {
|
|
justify-content: space-between;
|
|
background: #f2f4f5;
|
|
padding-top: 20px;
|
|
padding-bottom: 20px;
|
|
text-align:center;
|
|
}
|
|
.footer-right {
|
|
display: flex;
|
|
flex-wrap:wrap;
|
|
margin-top:16px;
|
|
}
|
|
|
|
.footer-element {
|
|
padding: 4px;
|
|
margin: auto 8px 8px;
|
|
}
|
|
|
|
@media (min-width:768px) {
|
|
.footer {
|
|
display: flex;
|
|
text-align:left;
|
|
}
|
|
}
|
|
|
|
</style>
|