Spaces:
Sleeping
Sleeping
Commit
·
4184fff
1
Parent(s):
498af60
flash
Browse files
app.py
CHANGED
|
@@ -124,6 +124,12 @@ h1 {
|
|
| 124 |
color: #ff00ff;
|
| 125 |
text-shadow: 2px 2px #000000;
|
| 126 |
font-size: 36px;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 127 |
}
|
| 128 |
.yellow-text {
|
| 129 |
color: #ffff00;
|
|
@@ -148,7 +154,7 @@ demo = gr.Interface(
|
|
| 148 |
),
|
| 149 |
],
|
| 150 |
outputs=gr.Gallery(label="Declassified UFO Sightings", elem_id="gallery"),
|
| 151 |
-
title="
|
| 152 |
description="<marquee direction='left' scrollamount='5' class='yellow-text'>Uncover the truth that's out there! The government doesn't want you to know!</marquee>",
|
| 153 |
css=css,
|
| 154 |
allow_flagging="never",
|
|
|
|
| 124 |
color: #ff00ff;
|
| 125 |
text-shadow: 2px 2px #000000;
|
| 126 |
font-size: 36px;
|
| 127 |
+
animation: flash 1s linear infinite;
|
| 128 |
+
}
|
| 129 |
+
@keyframes flash {
|
| 130 |
+
0% { color: #ff00ff; }
|
| 131 |
+
50% { color: #00ffff; }
|
| 132 |
+
100% { color: #ff00ff; }
|
| 133 |
}
|
| 134 |
.yellow-text {
|
| 135 |
color: #ffff00;
|
|
|
|
| 154 |
),
|
| 155 |
],
|
| 156 |
outputs=gr.Gallery(label="Declassified UFO Sightings", elem_id="gallery"),
|
| 157 |
+
title="<h1>🛸 Top Secret UFO Document Search 🛸</h1>",
|
| 158 |
description="<marquee direction='left' scrollamount='5' class='yellow-text'>Uncover the truth that's out there! The government doesn't want you to know!</marquee>",
|
| 159 |
css=css,
|
| 160 |
allow_flagging="never",
|