Style footer links in medium width
This commit is contained in:
parent
a31f676b46
commit
f54d1885b5
|
@ -1048,7 +1048,18 @@ table.metadata td.name {
|
||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
display: none;
|
position: absolute;
|
||||||
|
bottom: 0;
|
||||||
|
right: 0;
|
||||||
|
width: 250px;
|
||||||
|
margin: 0;
|
||||||
|
padding: 5px;
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer a {
|
||||||
|
display: block;
|
||||||
|
border: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
header .logo {
|
header .logo {
|
||||||
|
@ -1094,6 +1105,10 @@ table.metadata td.name {
|
||||||
.right-column .compose {
|
.right-column .compose {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Copy to clipboard action */
|
/* Copy to clipboard action */
|
||||||
|
|
|
@ -76,10 +76,10 @@
|
||||||
|
|
||||||
<footer>
|
<footer>
|
||||||
{% if config.site_about %}<a href="{% url "about" %}">About</a>{% endif %}
|
{% 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_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_terms %}<a href="{% url "terms" %}">Terms of Service</a>{% endif %}
|
||||||
{% if config.policy_privacy %}<a href="{% url "privacy" %}">Privacy Policy</a>{% endif %}
|
{% if config.policy_privacy %}<a href="{% url "privacy" %}">Privacy Policy</a>{% endif %}
|
||||||
<a href="https://jointakahe.org">Takahē {{ config.version }}</a>
|
<a href="https://jointakahe.org">Takahē {{ config.version }}</a>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Reference in New Issue