at the end of the day, it was inevitable
This commit is contained in:
@@ -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">®</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 & Conditions</a></li>
|
||||
<li class="footer__item"><a href="https://www.socialhose.io" class="footer__link">Copyright © 2021 SOCIALHOSE.IO. All rights reserved.</a></li>
|
||||
</ul>
|
||||
</footer>
|
||||
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user