Spaces:
Running
Running
Update docs.html
Browse files
docs.html
CHANGED
|
@@ -315,34 +315,39 @@
|
|
| 315 |
}
|
| 316 |
|
| 317 |
#pfp {
|
| 318 |
-
|
| 319 |
-
|
| 320 |
-
|
| 321 |
-
|
| 322 |
-
|
| 323 |
-
|
| 324 |
-
|
| 325 |
-
|
| 326 |
-
|
| 327 |
-
|
| 328 |
-
|
| 329 |
-
|
| 330 |
-
|
| 331 |
-
|
| 332 |
-
|
| 333 |
|
| 334 |
.profile-glow {
|
| 335 |
-
|
| 336 |
-
|
| 337 |
-
|
| 338 |
-
|
| 339 |
-
|
| 340 |
-
|
| 341 |
-
|
| 342 |
-
|
| 343 |
-
|
| 344 |
-
|
| 345 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 346 |
|
| 347 |
@keyframes profileGlow {
|
| 348 |
0% { transform: translateX(-50%) scale(1); opacity: 0.6; }
|
|
|
|
| 315 |
}
|
| 316 |
|
| 317 |
#pfp {
|
| 318 |
+
position: absolute;
|
| 319 |
+
bottom: 10px;
|
| 320 |
+
left: 50%;
|
| 321 |
+
transform: translateX(-50%);
|
| 322 |
+
width: 105px;
|
| 323 |
+
height: 105px;
|
| 324 |
+
object-fit: cover;
|
| 325 |
+
border-radius: 5%;
|
| 326 |
+
border: 3px solid var(--theme-primary); /* use theme color */
|
| 327 |
+
box-shadow:
|
| 328 |
+
0 0 20px rgba(var(--theme-primary-rgb), 0.8), /* use theme RGB for shadow */
|
| 329 |
+
0 0 40px rgba(var(--theme-primary-rgb), 0.4);
|
| 330 |
+
background: var(--theme-bg-secondary);
|
| 331 |
+
z-index: 4;
|
| 332 |
+
}
|
| 333 |
|
| 334 |
.profile-glow {
|
| 335 |
+
position: absolute;
|
| 336 |
+
bottom: -30px;
|
| 337 |
+
left: 50%;
|
| 338 |
+
transform: translateX(-50%);
|
| 339 |
+
width: 100px;
|
| 340 |
+
height: 100px;
|
| 341 |
+
border-radius: 50%;
|
| 342 |
+
background: radial-gradient(
|
| 343 |
+
circle,
|
| 344 |
+
rgba(var(--theme-primary-rgb), 0.4) 0%,
|
| 345 |
+
rgba(var(--theme-primary-rgb), 0.2) 50%,
|
| 346 |
+
transparent 70%
|
| 347 |
+
);
|
| 348 |
+
z-index: 3;
|
| 349 |
+
animation: profileGlow 3s ease-in-out infinite alternate;
|
| 350 |
+
}
|
| 351 |
|
| 352 |
@keyframes profileGlow {
|
| 353 |
0% { transform: translateX(-50%) scale(1); opacity: 0.6; }
|