at the end of the day, it was inevitable

This commit is contained in:
Mo Elzubeir
2022-12-09 08:36:26 -06:00
commit 1218570914
1768 changed files with 887087 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
{#
Footer component.
#}
<footer class='footer'>
<ul class="footer__list">
<li class="footer__item"><a href="https://www.socialhose.io" class="footer__link">SOCIALHOSE.IO<span class="logo-trademark">&reg;</span></a></li>
<li class="footer__item"><a href="https://www.socialhose.io/en/legal/privacy" class="footer__link">Privacy Policy</a></li>
<li class="footer__item"><a href="https://www.socialhose.io/en/legal/acceptable-use" class="footer__link">Acceptable Use Policy</a></li>
<li class="footer__item"><a href="https://www.socialhose.io/en/legal/terms" class="footer__link">Terms &amp; Conditions</a></li>
<li class="footer__item"><a href="https://www.socialhose.io" class="footer__link">Copyright &copy; 2021 SOCIALHOSE.IO. All rights reserved.</a></li>
</ul>
</footer>
+40
View File
@@ -0,0 +1,40 @@
{#
Footer component styles.
#}
.footer {
padding: 0 20px;
{%- if themeType == 'plain' -%}
border-top: 3px double #FFF;
{%- endif -%}
background: #e9e9ea;
height: 54px;
margin-top: 20px;
box-sizing: border-box;
}
.footer__list {
margin: 0;
padding: 0;
}
.footer__item {
display: inline-block;
margin-right: 5px;
padding: 0;
}
.footer__link {
text-shadow: 1px 2px 1px #FFF;
line-height: 49px;
display: block;
padding: 0 10px;
color: #373739;
font-size: 12px;
}
.footer__link:hover {
background: #D9D9D9;
}