Skip to content

Commit

Permalink
commit 420
Browse files Browse the repository at this point in the history
  • Loading branch information
jdabtieu committed Mar 1, 2021
1 parent dad4026 commit 611a5c9
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions src/templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,41 @@
</nav>

<main class="container">
<h1 id="god">jdabtieu is a god</h1>
<style>
#god {
color: #FF0000;
animation: rainbow 5s infinite linear;
margin: 1em 0;
text-align: center;
}
@keyframes rainbow {
12.5% {
color: #FF7F00;
}
25% {
color: #FFFF00;
}
37.5% {
color: #00FF00;
}
50% {
color: #00FFFF;
}
62.5% {
color: #0000FF;
}
75% {
color: #2E2B5F;
}
87.5% {
color: #8B00FF;
}
100% {
color: #FF0000;
}
}
</style>
{% with msg = get_flashed_messages(with_categories=True) %}
{% if msg %}
{% for category, message in msg %}
Expand Down

0 comments on commit 611a5c9

Please sign in to comment.