Reaperxxxx commited on
Commit
722d0eb
·
verified ·
1 Parent(s): 245f96c

Update docs.html

Browse files
Files changed (1) hide show
  1. docs.html +20 -14
docs.html CHANGED
@@ -404,14 +404,19 @@
404
  }
405
 
406
  .stats-section {
407
- background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
408
- border: 1px solid #00bcd4;
409
- border-radius: 10px;
410
- padding: 15px;
411
- box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
412
- position: relative;
413
- overflow: hidden;
414
- }
 
 
 
 
 
415
 
416
  .stats-section::before {
417
  content: '';
@@ -662,11 +667,11 @@
662
 
663
  /* NFT Styles */
664
  .nfts-section {
665
- background: var(--theme-nft-bg-image, none),
666
  linear-gradient(135deg, var(--theme-bg-secondary) 0%, var(--theme-bg-tertiary) 100%);
667
- background-size: contain; /* entire image fits inside the section */
668
- background-position: center; /* center the image */
669
- background-repeat: no-repeat; /* no tiling */
670
  border: 1px solid var(--theme-primary);
671
  border-radius: 10px;
672
  padding: 15px;
@@ -1317,6 +1322,7 @@
1317
  --theme-bg-primary: #1a0a0a;
1318
  --theme-bg-secondary: #2e1a1a;
1319
  --theme-bg-tertiary: #3e1616;
 
1320
  }
1321
 
1322
  /* Black Theme */
@@ -1365,7 +1371,7 @@
1365
  --theme-bg-secondary: #23142e;
1366
  --theme-bg-tertiary: #31163e;
1367
  --theme-text-primary: #e6d9f0;
1368
- --theme-nft-bg-image: url('https://files.catbox.moe/oh4knm.jpeg');
1369
  }
1370
 
1371
  /* Brown Theme */
@@ -1387,7 +1393,7 @@
1387
  --theme-bg-tertiary: #333333;
1388
  --theme-text-primary: #f0f0f0;
1389
  --theme-text-secondary: #b0b0b0;
1390
- --theme-bg-image: url('https://files.catbox.moe/ro8krj.jpeg');
1391
  }
1392
 
1393
  /* Cyan Theme */
 
404
  }
405
 
406
  .stats-section {
407
+ background:
408
+ var(--theme-stats-bg-image, none), /* optional image */
409
+ linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
410
+ background-size: contain; /* or cover, depending on whether you want full image or cropped */
411
+ background-position: center;
412
+ background-repeat: no-repeat;
413
+ border: 1px solid #00bcd4;
414
+ border-radius: 10px;
415
+ padding: 15px;
416
+ box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
417
+ position: relative;
418
+ overflow: hidden;
419
+ }
420
 
421
  .stats-section::before {
422
  content: '';
 
667
 
668
  /* NFT Styles */
669
  .nfts-section {
670
+ background: var(--theme-nft-bg-image, none), /* optional image */
671
  linear-gradient(135deg, var(--theme-bg-secondary) 0%, var(--theme-bg-tertiary) 100%);
672
+ background-size: cover;
673
+ background-position: center;
674
+ background-repeat: no-repeat;
675
  border: 1px solid var(--theme-primary);
676
  border-radius: 10px;
677
  padding: 15px;
 
1322
  --theme-bg-primary: #1a0a0a;
1323
  --theme-bg-secondary: #2e1a1a;
1324
  --theme-bg-tertiary: #3e1616;
1325
+ --theme-stats-bg-image: url('https://files.catbox.moe/0im7km.jpeg');
1326
  }
1327
 
1328
  /* Black Theme */
 
1371
  --theme-bg-secondary: #23142e;
1372
  --theme-bg-tertiary: #31163e;
1373
  --theme-text-primary: #e6d9f0;
1374
+ --theme-nft-bg-image: url('');
1375
  }
1376
 
1377
  /* Brown Theme */
 
1393
  --theme-bg-tertiary: #333333;
1394
  --theme-text-primary: #f0f0f0;
1395
  --theme-text-secondary: #b0b0b0;
1396
+ --theme-bg-image: url('');
1397
  }
1398
 
1399
  /* Cyan Theme */