Fix footer styling
This commit is contained in:
parent
ae12aadd38
commit
002276ab9a
|
@ -128,7 +128,7 @@ main {
|
|||
}
|
||||
|
||||
footer {
|
||||
max-width: 900px;
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
padding: 0 0 10px 0;
|
||||
color: var(--color-text-duller);
|
||||
|
@ -136,31 +136,7 @@ footer {
|
|||
font-size: 90%;
|
||||
}
|
||||
|
||||
body:not(.no-sidebar) footer {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
right: calc((100vw - 920px)/2);
|
||||
width: 250px;
|
||||
margin: 0;
|
||||
padding: 5px;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
body:not(.no-sidebar) footer a {
|
||||
flex-basis: 50%;
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
body:not(.no-sidebar) footer a:hover {
|
||||
color: var(--color-text-dull);
|
||||
}
|
||||
|
||||
.no-sidebar footer {
|
||||
max-width: 800px;
|
||||
}
|
||||
|
||||
.no-sidebar footer a {
|
||||
footer a {
|
||||
border-bottom: 1px solid var(--color-text-duller);
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
@ -404,6 +380,14 @@ nav a i {
|
|||
text-transform: uppercase;
|
||||
}
|
||||
|
||||
.right-column footer {
|
||||
padding: 0 10px 20px 10px;
|
||||
font-size: 90%;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.right-column footer a {}
|
||||
|
||||
img.emoji {
|
||||
height: 0.8em;
|
||||
}
|
||||
|
@ -418,6 +402,10 @@ img.emoji {
|
|||
padding: 5px 15px;
|
||||
}
|
||||
|
||||
.no-sidebar section:last-of-type {
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.no-sidebar section.shell {
|
||||
background: none;
|
||||
box-shadow: none;
|
||||
|
@ -825,6 +813,10 @@ form .clear input {
|
|||
width: 32px;
|
||||
}
|
||||
|
||||
.right-column form.compose .buttons {
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.right-column form.compose input,
|
||||
.right-column form.compose textarea {
|
||||
margin: 0 0 10px 0;
|
||||
|
@ -1600,19 +1592,6 @@ form .post {
|
|||
margin: 20px auto 20px auto;
|
||||
}
|
||||
|
||||
body:not(.no-sidebar) footer {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
body:not(.no-sidebar) footer a {
|
||||
display: block;
|
||||
border: 0;
|
||||
}
|
||||
|
||||
body:not(.no-sidebar) header .logo {
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
.post .attachments a.image img {
|
||||
max-height: 300px;
|
||||
}
|
||||
|
@ -1666,7 +1645,7 @@ form .post {
|
|||
display: none;
|
||||
}
|
||||
|
||||
body:not(.no-sidebar) footer {
|
||||
.right-column footer {
|
||||
display: none;
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,7 @@
|
|||
<footer>
|
||||
{% if config.site_about %}<a href="{% url "about" %}">About</a>{% endif %}
|
||||
{% if config.policy_rules %}<a href="{% url "rules" %}">Server Rules</a>{% endif %}
|
||||
{% if config.policy_terms %}<a href="{% url "terms" %}">Terms of Service</a>{% endif %}
|
||||
{% if config.policy_privacy %}<a href="{% url "privacy" %}">Privacy Policy</a>{% endif %}
|
||||
<a href="https://jointakahe.org">Takahē {{ config.version }}</a>
|
||||
</footer>
|
|
@ -83,19 +83,15 @@
|
|||
{% block right_content %}
|
||||
{% include "activities/_menu.html" %}
|
||||
{% endblock %}
|
||||
{% include "_footer.html" %}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
</main>
|
||||
|
||||
<footer>
|
||||
{% if config.site_about %}<a href="{% url "about" %}">About</a>{% endif %}
|
||||
{% if config.policy_rules %}<a href="{% url "rules" %}">Server Rules</a>{% endif %}
|
||||
{% if config.policy_terms %}<a href="{% url "terms" %}">Terms of Service</a>{% endif %}
|
||||
{% if config.policy_privacy %}<a href="{% url "privacy" %}">Privacy Policy</a>{% endif %}
|
||||
<a href="https://jointakahe.org">Takahē {{ config.version }}</a>
|
||||
</footer>
|
||||
{% block footer %}
|
||||
{% endblock %}
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -31,3 +31,7 @@
|
|||
{% endblock %}
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
{% block footer %}
|
||||
{% include "_footer.html" %}
|
||||
{% endblock %}
|
||||
|
|
Loading…
Reference in New Issue