-
Notifications
You must be signed in to change notification settings - Fork 126
/
style.css
1321 lines (1312 loc) · 42.1 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*TO TURN OFF AUTO HIDE SIDEBAR REMOVE THE BELOW CODE AND TURN OFF THE JAVASCRIPT CODE*/
/*From Here*/
tp-yt-app-drawer.ytd-app[persistent] {
display:none;
}
ytd-page-manager.ytd-app {
margin-left: 0px !important;
}
ytd-mini-guide-renderer.ytd-app {
width: 0px !important;
}
/*To Here*/
/* SIDEBAR CONFIG */
#contentContainer.tp-yt-app-drawer[opened] {
background: #18181818 !important;/*CHANGE THIS TO APPLY COLOR TO SIDEBAR*/
backdrop-filter: blur(10px) !important;
border-radius: 10px !important;
}
/*Caption Window BG and Blur*/
.caption-window {
background-color: rgba(50, 50, 50, .2) !important;/*CHANGE THE DECIMAL VALUE TO ADJUST THE DARKNESS OF THE CAPTION WINDOW*/
backdrop-filter: blur(10px) !important;
border-radius: 10px !important;
}
/*Dark search text
.sbsb_d{
background: rgba(20, 20, 20, 0.3) !important;
}*/
/*Light search text*/
.sbsb_d {
background: rgba(255, 255, 255, 0.1) !important;
}
/*Scrollbar theme by https://github.com/luandersonn*/
body::-webkit-scrollbar {
width: 10px;
transition: 1.0s;
}
body::-webkit-scrollbar-thumb {
background-color: rgba(127, 127, 127, 0.6);
background-clip: padding-box;
border: 2px solid transparent;
border-radius: 5px;
transition: 1.0s;
}
body::-webkit-scrollbar-thumb:vertical:hover,
body::-webkit-scrollbar-thumb:horizontal:hover {
background-color: rgb(110, 110, 110);
transition: 0.3s;
}
body::-webkit-scrollbar-track {
background-color: transparent;
}
body::-webkit-scrollbar-thumb:vertical:active,
::-webkit-scrollbar-thumb:horizontal:active {
background: rgba(95, 91, 91, 1);
}
body::-webkit-scrollbar-corner {
background: none;
}
/*Smooth Scroll*/
html {
scroll-behavior: smooth;
}
/*chapter border radius*/
ytd-engagement-panel-section-list-renderer {
border-radius: 15px;
}
ytd-thumbnail.ytd-rich-grid-media:before {
background-color: transparent !important;
}
/*feed filter background remove / border delete*/
#chips-wrapper.ytd-feed-filter-chip-bar-renderer {
background-color: transparent !important;
border-top: none !important;
border-bottom: none !important;
}
/*feed filter blur transition when hover*/
iron-selector{
backdrop-filter: blur(10px);
transition: none;
}
/*feed filter space remove*/
#scroll-container.ytd-feed-filter-chip-bar-renderer {
margin-top: -1px !important;
}
/*feed filter options color*/
yt-chip-cloud-chip-renderer[chip-style="STYLE_DEFAULT"], yt-chip-cloud-chip-renderer[chip-style="STYLE_HOME_FILTER"] {
background-color: rgba(49, 49, 49, 0.78);
}
/*feed filter options color when hover*/
yt-chip-cloud-chip-renderer.style-scope.ytd-feed-filter-chip-bar-renderer:hover {
background-color: #545454c7;
}
/*feed filter border delete*/
ytd-feed-filter-chip-bar-renderer {
border-top: none !important;
border-bottom: none !important;
}
/*feed filter fade delete*/
/*feed filter color delete*/
ytd-feed-filter-chip-bar-renderer {
background-color: transparent !important;
margin-top: -1px;
transition: all .25s linear
}
/*hide live chat background border radius*/
#show-hide-button.ytd-live-chat-frame>ytd-toggle-button-renderer.ytd-live-chat-frame {
border-radius: 9px;
}
/*menu checkbox*/
.ytp-menuitem-toggle-checkbox {
border-radius: 10px !important;
}
/*endscreen subscribe card*/
.subscribecard-endscreen .ytp-subscribe-card {
background: rgba(0, 0, 0, 0.75) !important;
border-radius: 15px !important;
backdrop-filter: blur(10px) !important;
}
/*endscreen link icon border radius / backdrop filter*/
.ytp-ce-expanding-icon {
background-color: #2323237a !important;
border-radius: 6px !important;
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
}
/*movie bg delete*/
ytd-thumbnail.ytd-rich-movie-renderer:before {
background-color: transparent !important;
}
/*time duration video endscreen*/
.ytp-ce-video-duration {
background-color: rgba(53, 53, 53, 0.49) !important;
border-radius: 7px !important;
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
}
/*next video preview text bg delete*/
.ytp-tooltip.ytp-text-detail.ytp-preview .ytp-tooltip-text {
background-color: transparent !important;
}
/*playlist panel border radius*/
.playlist-items.ytd-playlist-panel-renderer {
border-radius: 0px 0px 12px 12px !important;
}
/*live badge text*/
.ytp-videowall-still[data-is-live=true] .ytp-videowall-still-info-live {
color: #272727 !important;
}
/*thumbnail overlay (play all) bg color*/
ytd-thumbnail-overlay-hover-text-renderer {
background-color: rgba(0, 0, 0, 0.5) !important;
}
/*channel menu item border radius*/
ytd-account-item-renderer.style-scope.ytd-account-item-section-renderer, paper-item.list-item.style-scope.ytd-account-settings {
border-radius: 10px !important;
}
/*movie player theater container border radius*/
ytd-watch-flexy[theater] #player-theater-container.ytd-watch-flexy, ytd-watch-flexy[fullscreen] #player-theater-container.ytd-watch-flexy {
border-radius: 13px !important;
}
/*info card teaser backdrop filter*/
.ytp-cards-teaser {
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
border-radius: 7px !important;
}
/*info card teaser background / border radius*/
.ytp-cards-teaser .ytp-cards-teaser-box {
background: rgba(50, 50, 50, 0.50) !important;
border-radius: 7px !important;
border: none !important;
}
/*info card teaser text color*/
.ytp-cards-teaser .ytp-cards-teaser-text {
color: #fff !important;
}
/*buy button background / text color*/
#button.yt-live-chat-message-buy-flow-renderer, yt-button-renderer.style-primary[is-paper-button], #action.ytd-action-companion-ad-renderer {
background-color: rgba(0, 149, 255, 0.26) !important;
border-radius: 10px !important;
color: #3ea6ff !important;
}
/*yt original header border radius*/
ytd-watch-card-rich-header-renderer {
border-radius: 10px !important;
margin-bottom: 5px !important;
}
/*yt button border radius*/
ytd-call-to-action-button-renderer[button-color=OPAQUE_BLACK] #overlay-button.ytd-call-to-action-button-renderer {
border-radius: 7px !important;
}
/*bottom right info renderer*/
paper-toast#toast {
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
background: rgba(50, 50, 50, 0.50) !important;
}
/*border delete*/
ytd-rich-shelf-renderer[is-show-more-hidden] #dismissable.ytd-rich-shelf-renderer {
border-bottom: none !important;
}
/*yt background*/
ytd-two-column-browse-results-renderer.style-scope.ytd-browse, ytd-search.style-scope.ytd-page-manager, ytd-browse.style-scope.ytd-page-manager {
background: #191919 !important;
}
/*live chat info card*/
#card.yt-live-chat-viewer-engagement-message-renderer {
background-color: #272727;
border-radius: 10px !important;
}
/*filter text fix*/
#label.ytd-search-filter-renderer {
background: none !important;
}
/*set reminder border radius*/
#buttons.ytd-rich-grid-video-renderer>*.ytd-rich-grid-video-renderer {
margin-top: 4px;
border-radius: 7px !important;
}
/*menu backdrop filter (channel / upload video / ...)*/
ytd-multi-page-menu-renderer[background-color-update], ytd-menu-popup-renderer, #contentWrapper.iron-dropdown>* {
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
}
/*show more button border delete / color*/
paper-button.style-scope.yt-next-continuation {
border: none !important;
color: gray !important;
}
/*show more button redesign*/
yt-formatted-string.style-scope.yt-next-continuation {
background: #48484852 !important;
padding: 7px !important;
border-radius: 8px !important;
}
/*playlist overlay backdrop filter*/
ytd-thumbnail-overlay-side-panel-renderer {
background: rgba(50, 50, 50, 0.30) !important;
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
margin-bottom: -2px !important;
border-radius: 0px 12px 12px 0px;
}
/*notification counter redesign*/
#notification-count.ytd-notification-topbar-button-renderer {
top: 5px !important;
right: 3px !important;
color: black !important;
width: 16px !important;
height: 16px !important;
border-radius: 6px !important;
line-height: 16px !important;
}
/*yt post background color*/
ytd-post-renderer[uses-compact-lockup_] {
background-color: #1d1d1d !important;
}
/*searchbar remove text color (already searched)*/
.sbsb_i {
color: #919191 !important;
}
/*set reminder (premiere)*/
#buttons.ytd-grid-video-renderer>*.ytd-grid-video-renderer {
border-radius: 7px !important;
}
/*liked by creator heart border*/
#hearted-border.ytd-creator-heart-renderer {
color: #181818 !important;
}
/*endscreen playlist count backdrop filter*/
.ytp-ce-playlist-count {
background-color: rgba(0, 0, 0, 0.15) !important;
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
border-radius: 0px 0px 10px 10px;
}
/*outline delete*/
.style-scope:focus {
outline: none;
}
/*view email button border radius*/
ytd-button-renderer[is-paper-button]{
margin-left: -16px;
border-radius: 10px !important;
}
/*sidebar width*/
#contentContainer.app-drawer {
width: 249px !important;
padding-left: 3px !important;
}
/*sidebar hover border radius*/
.ytd-guide-section-renderer #endpoint:hover {
border-radius: 10px !important;
}
/*sidebar selected border radius*/
ytd-guide-entry-renderer[active] {
border-radius: 10px !important;
}
/*sidebar selected border radius*/
paper-item.style-scope.ytd-guide-entry-renderer::before {
border-radius: 10px !important;
}
ytd-app {
--app-drawer-width: 245px !important;
}
ytd-guide-entry-renderer{
width: 95% !important;
}
tp-yt-paper-item.ytd-guide-entry-renderer {
padding: 0px 10px !important;
}
#sections.ytd-guide-renderer {
padding-left: 5px;
}
/*survey border delete*/
ytd-primetime-promo-renderer.ytd-rich-section-renderer, ytd-inline-survey-renderer.ytd-rich-section-renderer {
border: none !important;
}
/*survey sent border radius / color*/
#dismissed.ytd-inline-survey-renderer {
border-radius: 15px !important;
background-color: #252a3abd !important
}
/*survey checkmark margin*/
#checkmark.paper-checkbox {
margin-top: 1px !important;
margin-left: -1px !important;
}
/*survey chechbox border radius*/
#checkbox.paper-checkbox {
border-radius: 7px !important;
}
/*survey container dismiss border radius / color*/
#dismiss-button.ytd-inline-survey-renderer {
background-color: #252a3aad !important;
border-radius: 0px 15px 15px 0px !important;
}
/*survey checkbox / title container border radius*/
paper-checkbox.style-scope.ytd-checkbox-survey-option-renderer {
border-radius: 10px !important;
}
/*survey checkbox / title container border radius / color*/
ytd-checkbox-survey-option-renderer.ytd-inline-survey-renderer {
background-color: #44444436 !important;
border-radius: 10px !important;
}
/*survey expanded container border radius / color / padding*/
ytd-inline-survey-renderer[expanded] #dismissable.ytd-inline-survey-renderer {
background-color: #252a3aad !important;
border-radius: 15px 0px 0px 15px !important;
padding: 4px !important;
}
/*survey (video / title) container border radius / color*/
#inline-survey-compact-video-renderer.ytd-inline-survey-renderer {
border-radius: 13px !important;
background-color: #121212ab !important;
}
/*survey container border radius / color*/
#star-survey.ytd-inline-survey-renderer {
border-radius: 15px !important;
background-color: #252a3a94 !important;
}
/*yt header border radius fix*/
#container.ytd-masthead {
border-radius: 0px !important;
}
/*merchandise border bottom fix*/
ytd-video-secondary-info-renderer {
border-bottom: none !important;
}
/*dark theme background fix*/
#label.ytd-toggle-theme-compact-link-renderer {
background: none !important;
backdrop-filter: none !important;
}
/*video shadow fix (channel)*/
.html5-video-player:not(.ytp-transparent), .html5-video-player.unstarted-mode, .html5-video-player.ad-interrupting, .html5-video-player.ended-mode, .html5-video-player.ytp-fullscreen {
box-shadow: none !important;
}
/*[[pbvs]]*/
/*dropdown menu border radius*/
paper-item.style-scope.ytd-menu-navigation-item-renderer {
border-radius: 10px !important;
}
/*video setting menu border radius*/
.ytp-menuitem-icon {
border-radius: 10px 0px 0px 10px !important;
}
/*video setting menu border radius*/
.ytp-menuitem-content {
border-radius: 0px 10px 10px 0px !important;
}
/*next button background fix*/
.ytp-button:not([aria-disabled=true]):not([disabled]):not([aria-hidden=true]) {
background-color: transparent !important;
backdrop-filter: none !important;
-webkit-backdrop-filter: none !important;
}
/*progress bar / next button preview border radius*/
.ytp-tooltip.ytp-bottom, .ytp-tooltip-bg, a.ytp-next-button.ytp-button {
border-radius: 8px !important;
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
background: rgba(50, 50, 50, 0.50);
}
/*(channel) community video box border radius*/
ytd-video-renderer.style-scope.ytd-backstage-post-renderer {
border-radius: 10px !important;
}
/*(channel) community thread border radius*/
ytd-backstage-post-thread-renderer[enable-borders-on-community] {
border-radius: 15px !important;
}
/*label background fix*/
#label.ytd-profile-column-stats-entry-renderer, #poll-votes.ytd-backstage-poll-renderer {
background: transparent !important;
}
/*dropdown menu highlighter border radius*/
paper-item.style-scope.ytd-menu-service-item-renderer {
border-radius: 10px !important;
}
/*dropdown menu highlighter border radius*/
paper-item.style-scope.yt-dropdown-menu {
border-radius: 10px !important;
}
/*channel header bg color*/
#channel-container.ytd-c4-tabbed-header-renderer, #tabs-container.ytd-c4-tabbed-header-renderer {
background-color: rgba(31, 31, 31, 0.4) !important;
}
/*channel header backdrop filter*/
div#channel-header {
background-color: rgba(31, 31, 31, 0.55) !important;
backdrop-filter: blur(20px) !important;
-webkit-backdrop-filter: blur(20px) !important;
}
/*channel tabs backdrop filter*/
ytd-c4-tabbed-header-renderer[background-color-update] #channel-container.ytd-c4-tabbed-header-renderer, ytd-c4-tabbed-header-renderer[background-color-update] #tabs-container.ytd-c4-tabbed-header-renderer {
background-color: rgba(23, 23, 23, 0.55) !important;
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
}
/*channel tabs backdrop filter*/
#tabs-inner-container.ytd-c4-tabbed-header-renderer {
background-color: rgba(40, 40, 40, 0.4) !important;
backdrop-filter: blur(20px) !important;
-webkit-backdrop-filter: blur(20px) !important;
}
/*toggle theme background fix*/
label.ytd-toggle-theme-compact-link-renderer {
background: transparent !important;
}
/*watch later icon (thumbnail) backdrop filter / border radius*/
/*div#label {
background: rgba(50, 50, 50, 0.60) !important;
backdrop-filter: blur(20px) !important;
-webkit-backdrop-filter: blur(20px) !important;
border-radius: 5px !important;
}*/
/*merchandise title margin top*/
div#title {
margin-top: 10px !important;
}
/*merchandise container margin top*/
td-merch-shelf-renderer[align-with-description][watch-color-update] {
margin-top: 1px !important;
}
/*merchandise container border radius*/
ytd-merch-shelf-renderer.style-scope.ytd-watch-flexy {
border-radius: 10px !important;
border: none;
}
/*merchandise highlighter*/
ytd-merch-shelf-item-renderer.style-scope.ytd-merch-shelf-renderer {
border-radius: 8px !important;
}
/*infocard border radius*/
ytp-cards-teaser-box {
border-radius: 10px !important;
}
/*social media links (channel)*/
#primary-links.ytd-c4-tabbed-header-renderer, #secondary-links.ytd-c4-tabbed-header-renderer {
border-radius: 10px !important;
margin-right: 10px;
}
ytcp-button[type=filled] {
border-radius: 10px;
}
/*yt button border radius*/
ytd-button-renderer.style-destructive[is-paper-button] {
border-radius: 8px !important;
}
/*endscreen video suggestion live margin*/
span.ytp-videowall-still-info-live {
margin-bottom: 10px !important;
margin-right: 10px !important;
}
/*endscreen video suggestion time margin*/
span.ytp-videowall-still-info-duration {
margin-bottom: 10px !important;
margin-right: 10px !important;
}
/*endscreen video suggestion author info margin*/
span.ytp-videowall-still-info-author {
margin-left: 7px !important;
}
/*endscreen video suggestion title margin*/
span.ytp-videowall-still-info-title {
margin-top: 5px !important;
margin-left: 7px !important;
}
/*endscreen video suggestion margin / border radius*/
.ytp-videowall-still-image {
margin-top: 7px !important;
margin-bottom: 7px !important;
margin-right: 7px !important;
margin-left: 7px !important;
border-radius: 10px !important;
}
/*thumbnail scale effect*/
ytd-thumbnail, #thumbnail.ytd-playlist-thumbnail, .ytp-show-tiles .ytp-videowall-still {
transition: all 0.25s !important;
}
/*thumbnail scale effect*/
ytd-thumbnail:hover, #thumbnail.ytd-playlist-thumbnail:hover, .ytp-show-tiles .ytp-videowall-still:hover {
transform: scale(1.05)
}
/*borderless search icon*/
#search-icon-legacy.ytd-searchbox {
border: none !important;
}
/*borderless searchbar*/
#container.ytd-searchbox {
border: none !important;
}
/*search icon background color*/
#search-icon-legacy.ytd-searchbox {
background-color: rgba(101, 100, 100, 0.24) !important;
}
/*searchbar background color*/
#container.ytd-searchbox {
background-color: #0000003d !important;
}
/*searchhead backdrop filter*/
#container.ytd-masthead {
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
}
/*searchhead background color*/
html:not(.style-scope), :not(.style-scope) {
--yt-spec-brand-background-primary: rgba(51, 51, 51, 0.46) !important;
}
ytd-video-preview {
padding: 0px !important;
margin: 12px !important;
}
#meta.ytd-video-preview {
border-radius: 0px !important;
}
ytd-video-preview[active] {
backdrop-filter: blur(10px) !important;
border-radius: 10px !important;
}
.sbdd_c {
display: none !important;
}
/*yt sub button (subsribed) color*/
paper-button.ytd-subscribe-button-renderer[subscribed] {
background-color: rgba(255, 255, 255, 0.09) !important;
color: #aaa !important;
}
/*like & dislike animation*/
@keyframes voting {
0% {
transform: rotate(-2deg) scale(0.5);
}
10% {
transform: rotate(-4deg) scale(1.3);
}
30% {
transform: rotate(-6deg) scale(1.7)
}
70% {
transform: rotate(3deg) scale(0.6)
}
100% {
transform: rotate(0deg) scale(1)
}
}
/*like animation time*/
#info ytd-toggle-button-renderer:nth-of-type(1) .style-default-active yt-icon {
animation: voting 1.1s ease forwards;
}
/*dislike animation time*/
#info ytd-toggle-button-renderer:nth-of-type(2) .style-default-active yt-icon {
animation: voting 1.1s ease forwards;
}
/*live badge border radius*/
.badge-style-type-live-now.ytd-badge-supported-renderer {
border-radius: 5px !important;
}
/*channel name border radius fix*/
#container.ytd-channel-name {
border-radius: 0px !important;
}
/*endscreen channel border radius*/
.ytp-ce-channel, .ytp-ce-channel .ytp-ce-expanding-image, .ytp-ce-channel .ytp-ce-element-shadow {
border-radius: 17px !important;
}
/*endscreen playlist border radius top left*/
.ytp-ce-element.ytp-ce-playlist.ytp-ce-element-show.ytp-ce-top-left-quad {
border-radius: 10px !important;
}
/*endscreen playlist border radius top right*/
.ytp-ce-element.ytp-ce-playlist.ytp-ce-element-show.ytp-ce-top-right-quad {
border-radius: 10px !important;
}
/*endscreen playlist border radius bottom right*/
.ytp-ce-element.ytp-ce-playlist.ytp-ce-element-show.ytp-ce-bottom-right-quad {
border-radius: 10px !important;
}
/*endscreen playlist border radius bottom left*/
.ytp-ce-element.ytp-ce-playlist.ytp-ce-element-show.ytp-ce-bottom-left-quad {
border-radius: 10px !important;
}
/*endscreen website border radius top left*/
.ytp-ce-element.ytp-ce-website.ytp-ce-element-show.ytp-ce-top-left-quad {
border-radius: 17px !important;
}
/*endscreen website border radius top right*/
.ytp-ce-element.ytp-ce-website.ytp-ce-element-show.ytp-ce-top-right-quad {
border-radius: 17px !important;
}
/*endscreen website border radius bottom left*/
.ytp-ce-element.ytp-ce-website.ytp-ce-element-show.ytp-ce-bottom-left-quad {
border-radius: 17px !important;
}
/*endscreen website border radius bottom right*/
.ytp-ce-element.ytp-ce-website.ytp-ce-element-show.ytp-ce-bottom-right-quad {
border-radius: 17px !important;
}
/*endscreen website image border radius*/
.ytp-ce-expanding-image {
border-radius: 17px !important;
}
/*gaming info container border radius*/
ytd-rich-metadata-renderer.style-scope.ytd-rich-metadata-row-renderer {
border-radius: 10px !important;
}
/*live chat bottom background color*/
yt-live-chat-message-input-renderer {
background: rgba(0, 0, 0, 0) !important;
}
/*live chat bar delete*/
#input-panel.yt-live-chat-renderer::after {
height: 0px !important;
}
/*live chat bar delete*/
yt-live-chat-renderer {
border-radius: 10px !important;
}
/*channel sub button (in video / bottom right) border radius / backdrop filter / color*/
.iv-branding .branding-context-container-inner {
border-radius: 10px !important;
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
background: rgba(50, 50, 50, 0.50) !important;
}
/*endscreen title background*/
.yt-ui-ellipsis {
background-color: #2b2b2b00;
}
/*info card image border radius*/
.iv-card-image {
border-radius: 10px 10px 0px 0px !important;
}
/*info card background color / border radius*/
.iv-card {
background: rgba(50, 50, 50, 0.50) !important;
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
border-radius: 10px !important;
}
/*info card text color*/
.iv-card h2 {
color: #d8d8d8;
}
/*info card text color*/
.ytp-ce-channel-this .ytp-ce-channel-metadata {
margin-top: 0px !important;
}
/*endscreen border top (text / sub button)*/
.ytp-ce-channel-this .ytp-ce-channel-metadata {
border-top: 1px solid #dc4a4a00;
}
/*endscreen channel info sub button (unsubscribed) border radius*/
.ytp-sb-subscribe, a.ytp-sb-subscribe {
border-radius: 8px !important;
}
/*endscreen channel info sub button (subscribed) color / border radius / padding*/
.ytp-sb-unsubscribe {
background-color: #545454;
color: rgba(171, 171, 171, 0.6);
border-radius: 8px !important;
padding: 10px 22px !important;
}
/*endscreen channel margin (header / sub button)*/
a.ytp-ce-channel-title.ytp-ce-link {
margin-bottom: 5px;
}
/*endscreen channel info text color*/
.ytp-ce-channel-metadata {
color: #ffffff;
}
/*endscreen channel / website info card color / border radius / backdrop filter*/
.ytp-ce-expanding-overlay-background {
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
background: rgba(50, 50, 50, 0.50) !important;
border-radius: 10px !important;
box-shadow: none !important;
}
/*endscreen website header color*/
.ytp-ce-website-title, .ytp-ce-merchandise-title {
color: #fff;
}
/*endscreen video border radius top left*/
.ytp-ce-element.ytp-ce-video.ytp-ce-element-show.ytp-ce-bottom-left-quad {
border-radius: 10px !important;
}
/*endscreen video border radius top right*/
.ytp-ce-element.ytp-ce-video.ytp-ce-element-show.ytp-ce-bottom-right-quad {
border-radius: 10px !important;
}
/*endscreen video border radius bottom left*/
.ytp-ce-element.ytp-ce-video.ytp-ce-element-show.ytp-ce-top-left-quad {
border-radius: 10px !important;
}
/*endscreen video border radius bottom right*/
.ytp-ce-element.ytp-ce-video.ytp-ce-element-show.ytp-ce-top-right-quad {
border-radius: 10px !important;
}
a#wide-clickable-area {
border-radius: 9px !important;
}
/*live chat / ... header*/
div#header {
border-radius: 10px 10px 0px 0px !important;
}
ytd-movie-offer-module-renderer.style-scope.ytd-watch-next-secondary-results-renderer {
border-radius: 10px !important;
}
/*ytd button border radius*/
ytd-button-renderer.style-primary[is-paper-button] {
border-radius: 7px !important;
}
/*show more button yt feed border radius*/
ytd-button-renderer#show-more-button {
border-radius: 10px;
}
/*show more button yt feed transparent border*/
#show-more-button.ytd-rich-shelf-renderer {
border-bottom: #f000;
}
/*yt feed transparent border*/
ytd-rich-shelf-renderer {
border-top: #f000;
}
ytd-post-renderer.style-scope.ytd-rich-item-renderer {
border-radius: 10px !important;
}
/*thumbnail border radius*/
a#thumbnail {
border-radius: 12px !important;
}
/*thumbnail background border radius*/
ytd-thumbnail.ytd-rich-grid-video-renderer:before {
border-radius: 12px !important;
}
/*video title border radius fix*/
#video-title {
border-radius: 0px !important;
}
/*video title border radius fix*/
a.yt-simple-endpoint.style-scope.yt-formatted-string {
border-radius: 0px !important;
}
/*searchbar predictions highlighter border radius*/
.gsfs {
border-radius: 7px !important;
color: #e4e4e4 !important;
}
/*thumbnail border radius*/
img#img {
border-radius: 10px !important;
}
/*save to (playlist) container backdrop filter*/
paper-dialog.style-scope.ytd-popup-container {
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
background: rgba(64, 64, 64, 0.40) !important;
}
/*cancel / submit (commetbox) button border radius*/
#cancel-button.ytd-commentbox, #submit-button.ytd-commentbox {
border-radius: 7px !important;
}
/*theme toggle highlighter border radius*/
ytd-toggle-theme-compact-link-renderer.style-scope.yt-multi-page-menu-section-renderer {
border-radius: 10px !important;
}
/*channel menu highlighter border radius*/
ytd-compact-link-renderer.style-scope.yt-multi-page-menu-section-renderer {
border-radius: 10px !important;
}
/*notification menu highlighter border radius*/
ytd-notification-renderer {
border-radius: 10px !important;
}
/*live chat header border radius*/
yt-live-chat-header-renderer.style-scope.yt-live-chat-renderer {
border-radius: 10px 10px 0px 0px !important;
}
/*info popup backdrop filter*/
#tooltip.paper-tooltip {
border-radius: 10px !important;
padding: 4px 8px !important;
margin: 12px 8px !important;
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
}
/*right click info panel backdrop filter*/
.ytp-popup, .html5-video-info-panel {
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
border-radius: 10px !important;
background: rgba(50, 50, 50, 0.30) !important;
}
/*searchbar predictions backdrop filter*/
.sbdd_b, .sbsb_a {
margin-top: 5px !important;
border: 0 !important;
background: rgba(50, 50, 50, 0.3) !important;
border-radius: 10px !important;
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
}
.sbpqs_a{
color: #BBBBBB !important;
}
/*Dark search text sbsb_d{
background: rgba(20, 20, 20, 0.3) !important;
}
*/
/*Light search text*/
.sbsb_d {
background: rgba(255, 255, 255, 0.1) !important;
}
#header-background.ytd-donation-shelf-renderer {
display: none !important;
}
/*ytd transparent background*/
#contentContainer.app-drawer[opened], #guide-wrapper.ytd-app {
background: transparent !important;
}
/*sidebar background backdrop filter*/
#guide-content.ytd-app, ytd-app[background-color-update_] #guide-content.ytd-app, ytd-mini-guide-renderer.ytd-app {
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
background: rgba(35, 35, 35, 0.5) !important;
overflow: hidden !important;
}
/*searchbar text bottom right*/
.sbfl_a, .sbfl_b {
color: rgba(255, 255, 255, 0.5) !important;
background: transparent !important;
}
/*ytd transparent background*/
#contentContainer.app-drawer[opened], #guide-wrapper.ytd-app {
background: transparent !important;
}
/*sidebar background backdrop filter*/
#guide-content.ytd-app, ytd-app[background-color-update_] #guide-content.ytd-app, ytd-mini-guide-renderer.ytd-app {
backdrop-filter: blur(10px) !important;
-webkit-backdrop-filter: blur(10px) !important;
background: rgba(35, 35, 35, 0.5) !important;
overflow: hidden !important;
}
/*ytd transparent background*/
ytd-mini-guide-entry-renderer[background-color-update], ytd-mini-guide-entry-renderer, ytd-menu-popup-renderer, paper-dialog, ytd-sponsorships-offer-renderer[dialog][dialog][dialog], ytd-account-settings, .dropdown-content.paper-menu-button, #embed-panel.yt-sharing-embed-renderer, ytd-report-details-form-renderer[dialog][dialog][dialog], ytd-app[background-color-update_] {
background: transparent !important;
}
/*dropdown menu / notification center / ... backdrop filter*/
ytd-multi-page-menu-renderer[background-color-update], paper-listbox, yt-confirm-dialog-renderer[dialog][dialog][dialog], paper-toast.yt-notification-action-renderer, paper-dialog, yt-report-form-modal-renderer[dialog][dialog][dialog], ytd-hotkey-dialog-renderer[dialog][dialog][dialog], paper-listbox.yt-dropdown-menu {
border-radius: 10px !important;
background: rgba(50, 50, 50, 0.40) !important;
border: 0 !important;
overflow: hidden !important;
}
/*menu shadow / border radius*/
ytd-multi-page-menu-renderer[background-color-update], ytd-menu-popup-renderer, #contentWrapper.iron-dropdown>* {
box-shadow: 0px 10px 50px 0px rgba(0, 0, 0, 0.75) !important;
border-radius: 10px !important;
}
/*notification menu video border radius / shadow*/
.thumbnail-container.ytd-notification-renderer, .thumbnail-container.ytd-comment-video-thumbnail-header-renderer {
border-radius: 10px !important;
box-shadow: 0px 0 20px 0px rgba(0, 0, 0, 0.5) !important;
}
/*channel menu header*/
ytd-active-account-header-renderer {
background: rgba(50, 50, 50, 0.50) !important;
}
/*share center / ... border radius*/
paper-dialog, ytd-sponsorships-offer-renderer[dialog][dialog][dialog], ytd-sponsorships-offer-with-video-renderer[dialog][dialog][dialog], .dropdown-content.paper-menu-button {
border-radius: 10px !important;
}
/*menu background transition (closed)*/
iron-overlay-backdrop {
background-color: rgba(31, 33, 53, 0);
backdrop-filter: blur(0px);
-webkit-backdrop-filter: blur(0px);
opacity: 1;
transition: all .5s;
}
/*menu background transition (opened)*/
iron-overlay-backdrop.opened, .b3-modal-dialog-quantum.b3-modal-dialog.modal-dialog-bg {
background-color: rgba(50, 50, 50, 0.50);
opacity: 1 !important;
backdrop-filter: blur(30px);
-webkit-backdrop-filter: blur(30px) !important;
}
/*ytd membership background*/
ytd-sponsorships-offer-with-video-renderer[dialog][dialog][dialog] {
background: rgba(50, 50, 50, 0.50) !important;
}
/*dropdown menu shadow delete*/
.dropdown-content.paper-menu-button {
box-shadow: 0px 0px 0px 0px !important;
}
/*share center link backdrop filter*/
#bar.yt-copy-link-renderer {
background: rgba(50, 50, 50, 0.50) !important;
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px) !important;
border: 0;
overflow: hidden;
border-radius: 10px !important;
}
/*live chat box hidden*/
#description-text.ytd-report-details-form-renderer, #card.yt-live-chat-paid-message-renderer {
overflow: hidden;
}
textarea-container fit style-scope iron-autogrow-textarea {
padding: 5px !important;
}
/*playlist shadow*/
ytd-engagement-panel-section-list-renderer[watch-color-update], ytd-playlist-panel-renderer[watch-color-update_] #container.ytd-playlist-panel-renderer, ytd-live-chat-frame[watch-color-update_] {
border: 0;
overflow: hidden;
box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.5);
}
/*socialblade border radius*/
#socialblade, #socialblade-tab paper-button, #socialblade-tab paper-button {
border-radius: 10px !important;
}
/*socialblade border radius*/
#sb-heading {
border-radius: 10px 10px 0px 0px !important;
}
/*socialblade border radius*/
#sb-data-pages {
border-radius: 0px 0px 10px 10px !important;
}
/*live chat header border radius*/
#yt-live-chat-header-renderer.style-scope.yt-live-chat-renderer {
border-radius: 10px !important;
}
/*live chat hide button border radius*/
ytd-live-chat-frame[watch-color-update] #show-hide-button.ytd-live-chat-frame>ytd-toggle-button-renderer.ytd-live-chat-frame {
border-radius: 10px !important;
}
/*live chat border radius*/
ytd-watch-flexy[flexy_][js-panel-height_] #chat.ytd-watch-flexy {
border-radius: 10px !important;
}
/*join button / ... background color / border radius*/
ytd-button-renderer.style-suggestive[is-paper-button] paper-button.ytd-button-renderer {
border: none !important;
background-color: rgba(0, 149, 255, 0.26) !important;
padding: 10px 14px !important;
}
/*ytd clarification box (public broadcast / ...)*/
ytd-clarification-renderer {
border-radius: 13px !important;
margin-top: 20px !important;
background-color: #202020 !important;
}