Zenjob Notes, and new Templates

This commit is contained in:
Norm Rasmussen
2022-11-11 21:54:43 -05:00
parent 22704920d8
commit c599b8b792
1222 changed files with 2246 additions and 43 deletions

View File

@ -0,0 +1,50 @@
<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>