mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-17 05:22:16 +00:00
no harm in a cheeky CSS animation
This commit is contained in:
@@ -6,7 +6,36 @@
|
|||||||
{% load total_invoices_todo from filters %}
|
{% load total_invoices_todo from filters %}
|
||||||
|
|
||||||
{% block titleheader %}
|
{% block titleheader %}
|
||||||
<a class="navbar-brand" style="margin-left: auto; margin-right: auto;" href="/"><span style="font-family: Fontdiner Swanky;color: #00ff00;text-shadow: 1px 1px 10px #71ff87, 1px 1px 10px #ccc;">Franken</span>RIGS</a>
|
<style>
|
||||||
|
.franken {
|
||||||
|
font-family: Fontdiner Swanky;
|
||||||
|
color: #00ff00;
|
||||||
|
animation: glow 1.5s infinite alternate;
|
||||||
|
}
|
||||||
|
|
||||||
|
@keyframes glow {
|
||||||
|
0% {
|
||||||
|
text-shadow: 0 0 5px #00ff00,
|
||||||
|
0 0 10px #00ff00,
|
||||||
|
0 0 20px #00ff00,
|
||||||
|
0 0 40px #00ff00;
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
text-shadow: 0 0 10px #00ff00,
|
||||||
|
0 0 20px #00ff00,
|
||||||
|
0 0 30px #00ff00,
|
||||||
|
0 0 60px #00ff00;
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
text-shadow: 0 0 5px #00ff00,
|
||||||
|
0 0 10px #00ff00,
|
||||||
|
0 0 20px #00ff00,
|
||||||
|
0 0 40px #00ff00;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<a class="navbar-brand" style="margin-left: auto; margin-right: auto;" href="/"><span class="franken">Franken</span>RIGS</a>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block titleelements %}
|
{% block titleelements %}
|
||||||
|
|||||||
Reference in New Issue
Block a user