Prometech Computer Sciences Corp commited on
Commit
b0400d4
·
verified ·
1 Parent(s): 903bd46

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +30 -7
app.py CHANGED
@@ -552,17 +552,40 @@ textarea, input, .gr-textbox, .gr-textbox * {
552
  .pb-music-wrap a{ color:#9affc0; text-decoration:none; font-family: var(--terminal-font);}
553
  .pb-music-wrap a:hover{ text-decoration:underline; font-family: var(--terminal-font);}
554
 
555
- /* === HIDE AUDIO TIMELINE COMPLETELY === */
556
- audio::-webkit-media-controls-timeline,
557
- audio::-webkit-media-controls-seek-back-button,
558
- audio::-webkit-media-controls-seek-forward-button {
559
- display: none !important;
 
 
 
560
  }
561
 
562
- audio::-webkit-media-controls-panel {
563
- background: transparent !important;
 
 
 
 
564
  }
565
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
566
  </style>
567
  """
568
 
 
552
  .pb-music-wrap a{ color:#9affc0; text-decoration:none; font-family: var(--terminal-font);}
553
  .pb-music-wrap a:hover{ text-decoration:underline; font-family: var(--terminal-font);}
554
 
555
+ /* === AUDIO PLAYER NEON SCROLL === */
556
+
557
+ /* Timeline (seek bar) */
558
+ audio::-webkit-media-controls-timeline {
559
+ height: 4px;
560
+ background: rgba(0, 255, 65, 0.15);
561
+ border-radius: 999px;
562
+ box-shadow: 0 0 6px rgba(0, 255, 65, 0.35);
563
  }
564
 
565
+ /* Progress */
566
+ audio::-webkit-media-controls-current-time-display,
567
+ audio::-webkit-media-controls-time-remaining-display {
568
+ color: #9affc0;
569
+ font-family: 'VT323', monospace;
570
+ text-shadow: 0 0 4px rgba(0,255,65,0.6);
571
  }
572
 
573
+ /* Thumb (sürgü topu) */
574
+ audio::-webkit-media-controls-timeline::-webkit-slider-thumb {
575
+ appearance: none;
576
+ width: 10px;
577
+ height: 10px;
578
+ background: #00ff41;
579
+ border-radius: 50%;
580
+ box-shadow:
581
+ 0 0 6px rgba(0,255,65,0.9),
582
+ 0 0 12px rgba(0,255,65,0.6);
583
+ }
584
+
585
+ /* Waveform çizgileri biraz sakin */
586
+ audio {
587
+ filter: hue-rotate(85deg) saturate(1.2) brightness(1.05);
588
+ }
589
  </style>
590
  """
591