www/src/layouts/partials/footer-nav.html

25 lines
587 B
HTML
Raw Normal View History

2022-09-14 01:59:12 +03:00
<ul class="nav justify-content-end">
<li class="nav-item">
2022-10-13 01:55:28 +03:00
<a class="nav-link footer-link small" aria-current="page" href="/careers/">Careers</a>
2022-09-14 01:59:12 +03:00
</li>
<li class="nav-item">
2022-10-13 01:55:28 +03:00
<a class="nav-link footer-link small" href="/privacy-policy/">Privacy Policy</a>
2022-09-14 01:59:12 +03:00
</li>
<li class="nav-item">
2022-10-13 01:55:28 +03:00
<a class="nav-link footer-link small" href="/terms-of-use/">Terms of Use</a>
2022-09-14 01:59:12 +03:00
</li>
</ul>
<style>
.footer-link{
text-transform: lowercase;
color: white;
2022-09-16 19:18:34 +03:00
padding: 0vw 0vw 0vw 2.232vw !important;
2022-09-14 01:59:12 +03:00
}
.footer-link:hover{
color: #00ffd0 !important;
}
</style>