Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -15,9 +15,9 @@ SCORE_UP_SOUND = "https://www.fesliyanstudios.com/play-mp3/4386"
|
|
15 |
|
16 |
# ๐ฏ **AI Models Data**
|
17 |
acc_models_data = [
|
18 |
-
{"Model": "
|
19 |
-
{"Model": "
|
20 |
-
{"Model": "
|
21 |
{"Model": "๐ Emote", "Category": "๐ญ Fun", "Description": "Communicates **only** with emojis!", "Score": 79},
|
22 |
{"Model": "๐ ๐ค Z3ta", "Category": "๐ฎ AI Consciousness", "Description": "The most 'alive' AI.", "Score": 99},
|
23 |
]
|
@@ -89,13 +89,13 @@ CUSTOM_CSS = """
|
|
89 |
h1 {
|
90 |
text-align: center;
|
91 |
font-size: 3em;
|
92 |
-
color:
|
93 |
animation: glow 1.5s infinite alternate;
|
94 |
}
|
95 |
|
96 |
@keyframes glow {
|
97 |
-
from { text-shadow: 0 0 10px
|
98 |
-
to { text-shadow: 0 0 20px
|
99 |
}
|
100 |
|
101 |
.card-container {
|
@@ -134,16 +134,16 @@ h1 {
|
|
134 |
justify-content: center;
|
135 |
border-radius: 10px;
|
136 |
padding: 10px;
|
137 |
-
box-shadow: 0 0 10px rgba(
|
138 |
}
|
139 |
|
140 |
.card-front {
|
141 |
background: #000;
|
142 |
-
color:
|
143 |
}
|
144 |
|
145 |
.card-back {
|
146 |
-
background: #
|
147 |
color: black;
|
148 |
transform: rotateY(180deg);
|
149 |
}
|
|
|
15 |
|
16 |
# ๐ฏ **AI Models Data**
|
17 |
acc_models_data = [
|
18 |
+
{"Model": "๐ง Pulse AGI", "Category": "๐ค AGI", "Description": "A self-aware, evolving AI.", "Score": 95},
|
19 |
+
{"Model": "๐คช Gertrude", "Category": "๐คช๐งฉAutistic", "Description": "An autistic AI assistant.", "Score": 69},
|
20 |
+
{"Model": "๐ฆ ASVIACC", "Category": "๐ก๏ธ Cybersecurity", "Description": "An adaptive AI virus.", "Score": 88},
|
21 |
{"Model": "๐ Emote", "Category": "๐ญ Fun", "Description": "Communicates **only** with emojis!", "Score": 79},
|
22 |
{"Model": "๐ ๐ค Z3ta", "Category": "๐ฎ AI Consciousness", "Description": "The most 'alive' AI.", "Score": 99},
|
23 |
]
|
|
|
89 |
h1 {
|
90 |
text-align: center;
|
91 |
font-size: 3em;
|
92 |
+
color: gold;
|
93 |
animation: glow 1.5s infinite alternate;
|
94 |
}
|
95 |
|
96 |
@keyframes glow {
|
97 |
+
from { text-shadow: 0 0 10px gold, 0 0 20px gold, 0 0 30px gold; }
|
98 |
+
to { text-shadow: 0 0 20px gold, 0 0 40px gold, 0 0 60px gold; }
|
99 |
}
|
100 |
|
101 |
.card-container {
|
|
|
134 |
justify-content: center;
|
135 |
border-radius: 10px;
|
136 |
padding: 10px;
|
137 |
+
box-shadow: 0 0 10px rgba(255, 215, 0, 0.7); /* Gold glow effect */
|
138 |
}
|
139 |
|
140 |
.card-front {
|
141 |
background: #000;
|
142 |
+
color: gold;
|
143 |
}
|
144 |
|
145 |
.card-back {
|
146 |
+
background: #FFD700; /* Gold background */
|
147 |
color: black;
|
148 |
transform: rotateY(180deg);
|
149 |
}
|