zle
zozzle
pull/2/head
Snakes 2022-11-22 19:09:42 -05:00
parent ec00608517
commit 00880ccadc
Signed by: Snakes
GPG Key ID: E745A82778055C7E
2 changed files with 19 additions and 3 deletions

View File

@ -5022,6 +5022,22 @@ img[src="/i/hand.webp"]+img[glow]:not([data-src]) {
pat-pfp-anim .3s infinite;
}
@keyframes rb {
10% { color: red; }
20% { color: orange; }
30% { color: yellow; }
40% { color: green; }
50% { color: cyan; }
70% { color: blue; }
80% { color: indigo; }
90% { color: violet; }
}
.zozbot {
font-weight: bold;
animation: rb 8s linear infinite;
}
.text-black {
color: var(--black);
}

View File

@ -203,7 +203,7 @@ def execute_zozbot(c, level, parent_submission, v):
level=level+1,
is_bot=True,
body="zoz",
body_html="<p>zoz</p>",
body_html='<p class="zozbot">zoz</p>',
top_comment_id=c.top_comment_id,
ghost=c.ghost,
distinguish_level=6
@ -220,7 +220,7 @@ def execute_zozbot(c, level, parent_submission, v):
level=level+2,
is_bot=True,
body="zle",
body_html="<p>zle</p>",
body_html='<p class="zozbot">zle</p>',
top_comment_id=c.top_comment_id,
ghost=c.ghost,
distinguish_level=6
@ -236,7 +236,7 @@ def execute_zozbot(c, level, parent_submission, v):
level=level+3,
is_bot=True,
body="zozzle",
body_html="<p>zozzle</p>",
body_html='<p class="zozbot">zozzle</p>',
top_comment_id=c.top_comment_id,
ghost=c.ghost,
distinguish_level=6