Reaperxxxx commited on
Commit
9645332
·
verified ·
1 Parent(s): c59ad1e

Update docs.html

Browse files
Files changed (1) hide show
  1. docs.html +31 -26
docs.html CHANGED
@@ -315,34 +315,39 @@
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 #00bcd4;
327
- box-shadow:
328
- 0 0 20px rgba(0, 188, 212, 0.8),
329
- 0 0 40px rgba(0, 188, 212, 0.4);
330
- background: #1a1a2e;
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(circle, rgba(0, 188, 212, 0.4) 0%, rgba(0, 188, 212, 0.2) 50%, transparent 70%);
343
- z-index: 3;
344
- animation: profileGlow 3s ease-in-out infinite alternate;
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; }