-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcss-fixes-experimental.txt
1858 lines (1858 loc) · 111 KB
/
css-fixes-experimental.txt
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
[Adblock Plus 2.0]
! Title: RU AdList CSS Fixes
! Homepage: https://forums.lanik.us/viewforum.php?f=102
!
! Косметически фильтры для исправления последствий блокировки и скрытия на сайтах.
! На данный момент работоспособность поддерживается только в uBlock Origin.
! Используется для генерации пользовательского стиля RU AdList CSS Fixes:
! https://userstyles.org/styles/101141/ru-adlist-css-fixes
! Который можно установить отдельно в случае использования Adblock Plus и других баннерорезок.
! ---
aif.ru,ain.ua,bit.ua,budport.com.ua,ixbt.com,ko.com.ua,kv.by,livejournal.com,mc.today,newstudio.tv,oper.ru,pay-day.ru,sc2tv.ru,stopgame.ru,userstyles.org,zakarpatpost.net##body:not(#id):style(background-image: none !important)
2pay-day.ru,4video.adult,aif.ru,ain.ua,bit.ua,budport.com.ua,ixbt.com,ko.com.ua,kv.by,livejournal.com,mc.today,newstudio.tv,oper.ru,sc2tv.ru,stopgame.ru,userstyles.org,zakarpatpost.net##html:not(#id):style(background-image: none !important)
! ---
baskino.film,dnepr.info,dugtor.ru,filmitorrent.net,filmitorrent.site,jetsetter.ua,kinoafisha.ua,kinobar.vip,kinoukr.com,konohatv.org,ladys.media,moskva.fm,newstudio.tv,nnmclub.ro,nnmclub.to,pay-day.ru,roem.ru,rusfootball.info,trupornolabs.org,utorr.cc,vc.ru,virusinfo.info,xxxadulttorrent.org,you-anime.ru,yummyanime.tv,zombie-film.live##body:not(#id):style(padding-top: 0 !important)
! ---
radioromantika.ru##.main-wrapp__content:style(margin-top: 0 !important)
101.ru##.wrapper-branding
101.ru##.wrapper:style(padding-top: 0 !important)
radioromantika.ru##body > a[href][target]
! ---
1080kino.net##.wrap:style(padding-top: 0 !important; top: 0 !important)
! ---
root-nation.com##.backstretch
1informer.com,fainaidea.com,itech.co.ua,moika78.ru,root-nation.com##html > body:style(cursor: default !important)
root-nation.com##html:not(#id) > body:not(#id):style(background: none !important)
! ---
1plus1.international##.cookies
1plus1.international,2plus2.ua,bigudi.tv,plus-plus.tv##.header:style(top: 0 !important)
2plus2.ua,bigudi.tv,plus-plus.tv##body:style(padding-top: 0 !important)
1plus1.video##div[class^="playlist-player-branding-"] ~ .playlist-player:style(max-width: 1155px !important)
! ---
www.1tv.ru##div[class^="Branding_container_"]:style(margin-top: unset !important; height: auto !important)
! ---
24smi.org##.footer:style(margin-top: 20px !important)
24smi.org##.out__inner > header:style(visibility: inherit !important)
! ---
2ip.io,2ip.ru##.consent__notice
2ip.io,2ip.ru##.consent__notice ~ .body-blackout
2ip.io,2ip.ru##body:style(overflow: auto !important)
! ---
tornado.3dn.ru##.wrap:style(cursor: default !important)
tornado.3dn.ru##.wraps:style(margin-top: 0 !important)
! ---
3dnews.kz,3dnews.ru##.article > .onadlable
3dnews.kz,3dnews.ru##.article > .onadlable ~ .js-mediator-article a[href]:not([href^="/"]):not([href^="#"]):not([href*="3dnews."]):style(pointer-events: none !important; text-decoration: none !important; color: inherit !important)
! ---
4pda.to##body[itemscope] [id]:first-child > style ~ a[href][target="_blank"]
4pda.to##html:not([class]):not([style]) > body:not([itemscope]) > div[id] > div[id][href]:style(cursor: auto !important)
4pda.to##html[style]:not([style=""]) > body [class]:not([id]):not(div):not([style]) :not(div)[class][id]:style(min-height: 0 !important; height: unset !important)
4pda.to##iframe[src*="utm_campaign"]
4pda.to##tbody > tr[valign="top"] > td[width*="%"] + td > a[href][target="_blank"] > img
! ---
4studio.com.ua###wrapper > #header:style(position: relative !important)
4studio.com.ua###wrapper:style(padding-top: 0 !important)
! ---
7days.ru##body:style(margin-top: 0 !important)
! ---
w98008mo.beget.tech###modal-overlay
w98008mo.beget.tech###modal-window
noddb.ru##.remodal-is-opened
w98008mo.beget.tech##body:style(overflow: auto !important)
noddb.ru##html:style(overflow: auto !important)
! ---
aces.gg###alert > *:style(pointer-events: auto)
aces.gg###alert:style(pointer-events: none)
aces.gg##body:style(background: black !important; cursor: default)
! ---
adme.media##body.ReactModal__Body--open > div[style^="z-index: 999; position: absolute;"]
adme.media##body.ReactModal__Body--open:style(overflow: auto !important)
! ---
ag.ru###header-links
ag.ru###new_logo_helper01:style(top: 0 !important)
! ---
agronom.com.ua,tt-cup.com##body > *:style(pointer-events: auto !important)
agronom.com.ua,tt-cup.com##body:style(cursor: auto !important)
agronom.com.ua,tt-cup.com##body:style(pointer-events: none !important)
! ---
agroreview.com##.main:style(cursor: auto !important)
! ---
agroxxi.ru##.sidebarfix:style(margin-top: 0 !important)
! ---
ai-next.ru##[role="tabpanel"] > div.MuiBox-root:style(min-height: 0 !important)
! ---
aif.ru###container:not(#id):style(margin-top: 0 !important)
! ---
ain.ua###subbody:style(top: auto !important)
ain.ua##.big-ad-wrapper:style(height: auto !important)
ain.ua##html > body:not(#id) > *:style(pointer-events: auto !important)
ain.ua##html > body:not(#id):style(pointer-events: none !important; background-color: #eff1f2 !important; margin-top: auto !important)
! ---
alexfilm.org##main > .container:style(margin-top: 50px !important)
! ---
alexua.tv##.static_content:style(min-height: 0 !important)
! ---
all-episodesfun.com##body > .wrapper:style(margin-top: 0 !important; max-width: unset !important)
all-episodesfun.com##body:style(background-image: none !important)
! ---
allapteki.ru###alia_modal
allapteki.ru###vita_modal
allapteki.ru,cont.ws,kraj.by,kurs.com.ua,profile.ru##body[class*="modal-"] > [class^="modal"]
allapteki.ru,cont.ws,kraj.by,kurs.com.ua,profile.ru##body[class*="modal-"]:style(overflow: auto !important)
! ---
allbasketball.org##.page-content:style(margin-top: 0 !important)
allbasketball.org##aside > div.overflow-hidden + .block-sidebar-wrapper:style(margin-top: 0 !important)
! ---
allboxing.ru##.content-wrapper:style(margin-top: 0 !important)
allboxing.ru##body *:style(transition: none !important)
allboxing.ru##body:style(padding-top: 0 !important)
! ---
alllyr.ru##.fancybox-enabled:style(overflow: auto !important)
! ---
androidinsider.ru###trend:style(margin-bottom: 0 !important)
androidinsider.ru###wrapper:style(background: none !important)
! ---
anekdot.ru##.nav-line:style(margin-top: 0 !important)
anekdot.ru##body:style(background-color: rgb(255, 255, 238) !important)
! ---
anidub.vip,anidubonline.com##.content > .sect-header:style(margin-bottom: 0 !important)
anidub.vip,anidubonline.com##.content:style(padding-top: 0 !important)
anidub.vip,anidubonline.com##.full:style(padding-top: 0 !important)
anidub.vip,anidubonline.com##.popular-in:style(padding-top: 80px !important)
anidub.vip,anidubonline.com##.sticky-wrap:style(position: relative !important)
anidub.vip,anidubonline.com##.wrap > .popular:style(visibility: visible !important)
anidub.vip,anidubonline.com##main > .wrap-center:style(margin-left: auto !important; margin-right: auto !important)
! ---
anilib.moe,anilib.one,anilib.top,anilibria.iss.one,anilibria.tv##.new-header
! ---
anime-naruto.ru,blich.ru,borutoplanet.ru,bungou-stray-dogs.ru,doktor-stoun.ru,haikyu.ru,hunter-x-hunter.ru,klinok-rassekayuschiy-demonov.ru,magicheskaya-bitva.ru,my-hero-academia.ru,one-pieces.ru,reinkarnatsiya-bezrabotnogo.ru,tokiyskie-mstiteli.ru##.home:style(padding-top: 0 !important)
anime-naruto.ru,blich.ru,borutoplanet.ru,bungou-stray-dogs.ru,doktor-stoun.ru,haikyu.ru,hunter-x-hunter.ru,klinok-rassekayuschiy-demonov.ru,magicheskaya-bitva.ru,my-hero-academia.ru,one-pieces.ru,reinkarnatsiya-bezrabotnogo.ru,tokiyskie-mstiteli.ru##.single:style(padding-top: 0 !important)
! ---
anime777.ru##.need-friends:style(margin-top: 125px !important)
anime777.ru##.vsemayki-banner
! ---
animecos.ru##.headb:style(height: auto !important)
animecos.ru##.wrap:style(margin-top: unset !important)
! ---
animedia.pro##.content > .media:style(padding-bottom: unset !important)
animedia.pro,tt.animedia.tv##.main-container:style(margin-top: 80px !important)
animedia.pro##.right-sidebar:style(height: auto !important)
animedia.pro,tt.animedia.tv##div[class^="promo"][class*="wrapper"]
! ---
animedub.ru##article.full > div .skrin ~ div:style(border: unset !important; background-color: unset !important)
! ---
animegid.online##.header:style(padding-block-start: 0 !important)
! ---
animego.online##body > .wrapper:style(padding-top: 0 !important; padding-bottom: 0 !important)
animego.online##body:style(padding-top: 0 !important; padding-bottom: 0 !important; background-image: none !important)
! ---
animejapan.tv,crazyatomicgames.com,xxx-igra.com,yaldagames.com##.fon_site_pic:style(background-image: none !important; padding-top: 0 !important)
! ---
animemobi.ru,euro-football.ru,onlinestreams.ru,seasonvar.one##.wrapper:style(margin-top: 0 !important)
! ---
animemovie.ru##.htitle:style(margin-left: 0 !important; left: 150px !important)
animemovie.ru##.logo:style(margin-left: 0 !important; left: 0 !important)
animemovie.ru##body > .standard:style(height: 100px !important; background: transparent !important)
animemovie.ru##header[role="banner"]:style(height: 100px !important; background: transparent !important)
animemovie.ru##nav[role="navigation"] > ul:style(top: 0 !important)
! ---
animespirit.tv,fullfilmhd.space,igry-online.net###wrapper:style(margin-top: 0 !important)
! ---
amedias.ru,anibests.ru,anijutsu.ru,animegofans.ru,animesenpai.ru,anistars.ru,jutsubest.ru,kinogo-net.la,softbox.life###wr-bg:style(padding-top: 60px !important; margin-top: unset !important; top: unset !important)
animevost.one,animevost.org,animevost.top,vost.pw##div[class^="headbg"] > .menu .sar:style(bottom: auto !important; top: 50px !important; z-index: 100 !important)
animevost.one,animevost.org,animevost.top,vost.pw##div[class^="headbg"] > .menu:style(top: 0 !important)
animevost.one,animevost.org,animevost.top,vost.pw##div[class^="headbg"]:style(background-image: none !important; height: auto !important)
! ---
! Домены Anistar
anistar.org,astar.bz,online-star.org,online-stars.org##.drowmenu:style(z-index: 1999999999 !important)
anistar.org,astar.bz,online-star.org,online-stars.org##.list-nav:style(z-index: 1 !important)
anistar.org,astar.bz,online-star.org,online-stars.org##body > .main.wrapper:style(margin-top: 0 !important)
anistar.org,astar.bz,online-star.org,online-stars.org##body > header:style(top: 0 !important)
anistar.org,astar.bz,online-star.org,online-stars.org##html > body:not(#id):style(background-image: none !important)
! ---
anitokyo.org,anitokyo.tv##.container > header:style(margin-top: 10px !important)
anitokyo.org,anitokyo.tv##.topside::after
anitokyo.org,anitokyo.tv##.topside::before
anitokyo.org,anitokyo.tv##.topside:style(max-width: 99.8% !important)
! ---
anti-malware.ru##body > header:style(margin-top: 0 !important)
! ---
apnews.com.ua##.reveal-overlay
apnews.com.ua##html:style(position: relative !important; top: 0 !important)
! ---
app-time.ru##.native-brand ~ section.main:style(margin-top: 0 !important)
app-time.ru##.native-brand:style(height: 0 !important)
app-time.ru##header:style(position: relative !important)
! ---
app2top.ru##.page-wrapper:style(padding-top: 0 !important)
! ---
artfile.ru##body > a.bsec[href="#"]:style(top: 31px !important)
artfile.ru##center > noindex > div[style*="height:"]
! ---
asn.in.ua##.lenta-wrap > .lenta:style(position: relative !important)
asn.in.ua##.lenta-wrap:style(height: auto !important)
! ---
trucks.ati.su###root:style(min-height: 0 !important)
loads.ati.su,tm.ati.su,trucks.ati.su##div[class*="user-data-grid"]:style(background: none !important; height: auto !important)
! ---
audioportal.su###blink2[color="red"]:style(-webkit-animation: none !important; color: #837e6e !important)
audioportal.su##div[id^="pos"] > a > img[src*="audioportal.su/!!!ads/!rotator/"]:style(zoom: 0.1 !important; filter: grayscale(1) !important)
! ---
autosport.com.ru##body:not(#id):style(padding-top: 0 !important; background-color: transparent !important)
! ---
av.by##.av-branding .page:style(padding-top: 0 !important; padding-bottom: 0 !important)
av.by##.av-branding:style(background: none !important)
! ---
www.aviasales.by,www.aviasales.kg,www.aviasales.md,www.aviasales.ru,www.aviasales.ua,www.aviasales.uz##[data-test-id="avia_form"] > div[class*="footer"] label:style(zoom: 2 !important; color: #f57c00 !important; font-weight: bold !important)
! ---
avito.ru##.avito-ads-container:style(margin: 0 !important; min-height: 0 !important; padding-top: 0 !important)
! ---
abw.by##.app-branding:style(transform: none !important)
abw.by##.cookie-modal
abw.by##body.stop-scroll:style(position: relative !important)
! ---
baby.ru##.promo-background:style(padding-top: 0 !important)
! ---
baibako.tv##.topserial:style(height: auto !important)
! ---
banki.ru##.header--short.header:style(margin-top: 0 !important)
! ---
batenka.ru##body > .subscribe-popup
batenka.ru##body:style(overflow: auto !important)
! ---
bestpersons.ru###userTabs:style(float: none !important)
! ---
! bigboss.video и зеркала
1bigboss.com,bigboss.video###oframeflashcontent > pjsdiv[style*="transition: transform"]:style(transform: none !important)
1bigboss.com,bigboss.video##video:style(filter: none !important)
! ---
www.bigmir.net##body > #header:style(top: 0 !important)
www.bigmir.net##body > .page:style(padding-top: 144px !important)
! ---
bin.ua##div[style="position:absolute;left:0px;top:0px;width:240px;margin-top:660px"]:style(position: relative !important; margin-top: auto !important)
! ---
bit.ua,gidonline.fun,greenpost.ua,kinoboom.su,kinogo-720.net,repackov.net,sportboom.info,urologypro.ru,virusinfo.info##body:not(#id):style(margin-top: 0 !important)
! ---
blisch.by###page:style(padding-top: 0 !important)
! ---
blitz.if.ua##aside#sidebar:style(min-height: auto !important)
! ---
blogs.pravda.com.ua##body > .block0:style(margin-top: 0 !important)
! ---
bombardir.ru##.branding:style(margin-top: 0 !important)
! --
bosch-home.ru##.cookielaw-modal-layer
bosch-home.ru##body.cookielaw-blur-background > *:style(filter: none !important)
bosch-home.ru##html > head ~ body:style(overflow-y: auto !important)
! ---
botanichka.ru##html > body > *:style(pointer-events: auto !important)
botanichka.ru##html > body:style(background-image: none !important; pointer-events: none !important)
! ---
brestcity.com###content-padding > #content ~ hr ~ *
brestcity.com###content-padding > *:style(color: black !important)
brestcity.com###content-padding:style(color: white !important)
! ---
bryansknovosti.ru,novozybkov.su##[data-alias="Copyright"] .widget-area > .widget_text:last-child:style(border-style: none !important)
! ---
btu.org.ua##.alltop1:style(margin-bottom: 30px !important)
! ---
budport.com.ua##.wrap_nd .page-head:style(height: auto !important)
! ---
bugaga.ru##.body-branding:style(background: none !important; padding-top: 0 !important)
! ---
buh24.com.ua,ppt.ru##body > div[class^="mfp-"]
buh24.com.ua,ppt.ru##html:style(overflow: auto !important)
! ---
buhgalter911.com##.b-chat:style(margin-bottom: 0 !important)
buhgalter.com.ua,buhgalter911.com##body.access *:style(filter: none !important)
buhgalter.com.ua,buhgalter911.com##body.access div[id^="access-au"]
buhgalter.com.ua,buhgalter911.com##body.access:style(overflow: auto !important; position: relative !important)
! ---
buhonline.ru##html:style(width: auto !important; position: unset !important; overflow: auto !important)
buhonline.ru##html[style*="overflow:"] > body > div:not([id]):not([class]):not([data-stories-widget-settings])
! ---
burninghut.ru##.layout-default__content--brand:style(margin-top: 0 !important)
! ---
businessua.com##body:style(background-color: white !important)
! ---
bvedomosti.ru###art-main:style(background-image: none !important)
bvedomosti.ru##.art-Header
bvedomosti.ru##.bg-top-menu:style(top: 0 !important)
! ---
car.ru##.header.header-wrapper:style(padding-top: 15px !important)
! ---
carambatv.ru##.content:style(background: none !important; padding: 0 !important)
! ---
cars.ru###main:style(margin-top: 0 !important)
cars.ru##a[href*="/adclick.php?bannerid="]
! ---
casstudio.tv##.footer:style(margin-bottom: 0 !important)
! ---
censor.net##body > .widget_header .header_icons:style(top: 0 !important)
censor.net##body > .widget_header .lang_switcher:style(top: 0 !important)
censor.net##body > .widget_header .menu:style(top: 0 !important)
censor.net##body > .widget_header:style(padding-top: 60px !important)
! ---
cf.ua##.hamburger__overlay.no-close
cf.ua##.scroll-content.disable-scrolling:style(overflow:auto !important)
cf.ua##body.overflow--hidden:style(overflow:auto !important)
! ---
champion.com.ua##.l-wrapper:style(margin-top: 0 !important)
! ---
championat.com##.header-logo__link > img:style(display: block !important)
championat.com##.page-sidebar > .sticky-vertical:style(position: relative !important; top: 0 !important)
championat.com##html:not(#id):style(padding-top: 0 !important)
! ---
cherkassy-sport.com###body:style(margin-top: 0 !important)
! ---
chita.ru##body:style(background: none !important; margin-top: 0 !important; padding-top: 0 !important)
! ---
cinema-hd.ru,doramatv.su,filmshd.vip,goodfilms.su,hdrezka.it,kinoxa.cc,lordfilm.lu,lordserial.fun,lordserial.run,lordserial.top,newseries.me,yummyanime.best##.wrap:style(padding-top: 0 !important)
! ---
comments.ua##.back_bottom > *:style(pointer-events: auto !important)
comments.ua##.back_bottom:style(cursor: auto !important)
comments.ua##.back_bottom:style(pointer-events: none !important)
! ---
conversion.im###mainContainer:style(cursor: auto !important; padding-top: unset !important; background-color: inherit !important)
! ---
coop-land.ru###snow:style(animation: none !important)
coop-land.ru##body:not(#id) > .header:style(margin-bottom: auto !important)
! ---
coub.com##.promo-background
coub.com##header[class="header -transparent"]:style(background: #e0e0e0 !important)
! ---
cpa.rip###page-wrapper > header:style(margin-bottom: auto !important)
! ---
cq.ru##.box[class*="content"]:style(margin-top: auto !important)
cq.ru##article[data-post-url^="https://cq.ru/articles/tech/"] .cq-code-block a[href][rel="nofollow"]:not([href^="/"]):not([href^="https://cq.ru/"]):style(pointer-events: none !important; color: inherit !important)
! ---
creativportal.ru##.pocaz:style(width: 10px !important; height: 10px !important; position: fixed !important; top:-100px !important)
! ---
ctv7.ru##body > .site:style(margin-top: 0 !important)
! ---
cursorinfo.co.il###cmp-iframe
cursorinfo.co.il##body:style(overflow: auto !important)
! ---
cyberforum.ru##body > div[style*="width"][style*="margin"]:style(margin-top: 0 !important)
! ---
cybersport.ru##.page-layout > main:style(padding-top: 0 !important)
! ---
delfi.ee##.C-ad-block-layer
delfi.ee##body:style(overflow: auto !important)
! ---
delovoymir.biz##body:style(padding-top: 0 !important; background-color: transparent !important)
! ---
dentalmagazine.ru##.subscribe-modal
dentalmagazine.ru##html:style(overflow: auto !important)
! ---
dev.ua##.island_overflow-initial > .feature_wide:style(margin: auto !important)
! ---
doefiratv.info##.b-cell > div[id]:style(padding-top: 0 !important)
! ---
draug.ru,modsforwot.ru###timer_1
draug.ru,modsforwot.ru###timer_2:style(display: block !important)
draug.ru,modsforwot.ru##body:style(overflow: auto !important)
! ---
! исправление ошибок и косяков оригинальной вёрстки
club.dns-shop.ru##.header-space:style(max-width: 100% !important)
! ---
domovita.by##body.blocked > #modalCookies
domovita.by##body.blocked > div[class*="modal-overlay"]
domovita.by##body.blocked:style(overflow: auto !important)
! ---
doramalive.news##.dl-content > .ageLimit
doramalive.news##.dl-content > .ageLimit ~ [class$="-player"]:style(display: block !important)
doramalive.news##.dl-content:style(min-height: unset !important)
! ---
doramax.org##.wrapper.full:style(margin-top: 70px !important)
! ---
doramy.su##.site:style(margin-top: 0 !important)
! ---
dostfilms.info,dostfilms.site,wowskill.ru##body:not(#id) .header:style(margin-top: 0 !important)
! ---
dota2.ru##.p-sidebar:style(margin: auto !important)
dota2.ru##div[class^="banner"] + section > div:style(width: auto !important; height: auto !important)
dota2.ru##div[class^="banner"] + section:style(padding: unset !important; margin: unset !important)
dota2.ru##html:not(#id) > body > [id]:not([style]):style(background-image: none !important; padding-top: 0 !important)
! ---
drahelas.ru##.adb:style(position: fixed !important; transform: scale(0) !important)
drahelas.ru##.forumAd:style(height: 1px !important)
drahelas.ru##.navbar_notice:style(position: fixed !important; transform: scale(0) !important)
! ---
! Драйв
drive2.com,drive2.ru##.u-extend-fix:style(background: center / 100% 100% no-repeat #515151 var(--res-logo) !important; border-radius: 6px !important)
drive2.com,drive2.ru##[data-track]:not(a):style(min-height: 0 !important; padding-top: unset !important; padding-bottom: unset !important; box-shadow: inherit !important)
drive2.com,drive2.ru##div[class$="content"] ~ div + div[class*=" "][class$="--mh"]
!
drive2.com,drive2.ru##div[itemtype*="://schema.org/BlogPosting"] > div:last-child > div:first-child + div[class]:style(width: unset !important; margin-left: unset !important)
drive2.com,drive2.ru##div[itemtype*="://schema.org/BlogPosting"] > div:last-child > div:first-child:not(:only-child):style(max-width: unset !important)
drive2.com,drive2.ru##div[itemtype*="://schema.org/BlogPosting"] > div:not(:last-child):style(min-height: 0 !important; padding-top: unset !important; padding-bottom: unset !important; box-shadow: inherit !important)
!
drive2.com,drive2.ru##div[itemtype*="://schema.org/Review"] ~ div:last-child > div:first-child + div[class]:style(width: unset !important; margin-left: unset !important)
drive2.com,drive2.ru##div[itemtype*="://schema.org/Review"] ~ div:last-child > div:first-child:not(:only-child):style(max-width: unset !important)
drive2.com,drive2.ru##div[itemtype*="://schema.org/Review"] ~ div:not(:last-child):style(min-height: 0 !important; padding-top: unset !important; padding-bottom: unset !important; box-shadow: inherit !important)
!
drive2.com,drive2.ru##div[itemtype*="://schema.org/Photograph"] > div:last-child > div:first-child + div[class]:style(width: unset !important; margin-left: unset !important)
drive2.com,drive2.ru##div[itemtype*="://schema.org/Photograph"] > div:last-child > div:first-child:not(:only-child):style(max-width: unset !important)
drive2.com,drive2.ru##div[itemtype*="://schema.org/Photograph"] > div:not(:last-child):style(min-height: 0 !important; padding-top: unset !important; padding-bottom: unset !important; box-shadow: inherit !important)
!
drive2.com,drive2.ru##div[itemtype*="://schema.org/Product"] ~ div:not(:last-child):style(min-height: 0 !important; padding-top: unset !important; padding-bottom: unset !important; box-shadow: inherit !important)
!
drive2.com,drive2.ru##div[class*="--content article "] + div
drive2.com,drive2.ru##div[class*="--content article "] + div + div:not(:last-child)
drive2.com,drive2.ru##div[class*="--content article "] + div ~ div:last-child > div:first-child + div[class]
drive2.com,drive2.ru##div[class*="--content article "] + div ~ div:last-child > div:first-child:not(:only-child):style(max-width: unset !important)
! ---
driveroff.net##body > #right
driveroff.net##body > #right ~ .middle:style(margin-right: 4px !important)
! ---
forums.drom.ru###dromRightCol
forums.drom.ru##.contentWrap .lcWrap:style(padding-right: unset !important)
! ---
dtf.ru,vc.ru##html:style(--layout-header-height-large: 60px !important)
! ---
dugtor.ru###left-block:style(min-height: 100% !important)
dugtor.ru###right-block:style(min-height: 100% !important)
! ---
dyvys.info##.td-header-sp-logo:style(max-height: 90px !important)
dyvys.info##body > *:style(pointer-events: auto !important)
dyvys.info##body:style(pointer-events: none !important)
! ---
dynamo.kiev.ua,ringside24.com##.fader-social:style(position: fixed !important; top: -10000px !important; opacity: 0 !important; z-index: -9999 !important)
dynamo.kiev.ua,ringside24.com##.social-open:style(overflow: auto !important)
! ---
economistua.com##.wdpu-container
economistua.com##.wpmui-overlay
economistua.com##body > *:style(pointer-events: auto)
economistua.com##body:style(padding-top: 0 !important; background: whitesmoke !important; overflow: auto !important; pointer-events: none)
economistua.com##html:style(padding-top: 0 !important; background: whitesmoke !important; overflow: auto !important; pointer-events: none)
! ---
edenland.com.ua##.socials-popup
edenland.com.ua##body:style(overflow: auto !important)
! ---
electric-house.ru##table[class^="header"] > tbody > tr > td ~ [class]
! ---
eplus.by###cookiesAgreementNotice
eplus.by##body:style(overflow: auto !important)
! ---
seasonvar.ru,uniondht.org##body:not(#id):style(padding: 0 !important)
seasonvar.ru,uniondht.org##html:not(#id):style(padding: 0 !important)
! ---
espreso.tv###disqus_thread:style(min-width: 700px !important)
! ---
eurointegration.com.ua##.header.fixed .layout:style(margin-top: 0 !important)
eurointegration.com.ua##.right_column_content > .block_news:style(margin-top: 0 !important)
eurointegration.com.ua##header.header:style(margin-top: 0 !important)
! ---
eva.ru##body > .eva:style(margin-top: 50px !important)
! ---
ex-fs.net###content:style(margin-top: 0 !important)
! ---
expertcen.ru##header .light-line:style(height: unset !important)
! ---
factor.ua##.b-access__auth
factor.ua##.b-access__overlay
factor.ua##body:style(overflow: auto !important)
! ---
fastpic.org##.justify-content-center > .col[id]:style(max-width: max-content !important)
fastpic.org##body > footer:style(background: none !important)
fastpic.org##main#mainContainer:style(max-width: unset !important)
! ---
fbsearch.ru###search_panel > .panel-body ~ div
fbsearch.ru###search_panel > .panel-body:style(display: block !important)
! ---
fex.net##.modal_type_video-ads
fex.net##body:style(overflow: auto !important)
! ---
filebase.ws##body > .root:style(top: 0 !important)
! ---
filmhd1080.me##.have-brand .obertka-in:style(margin-top: 70px !important)
! ---
filmishki.net##.wrap > .block:style(margin-top: 0 !important)
! ---
filmitorrent.net,filmitorrent.site,utorr.cc##body > #container:style(margin-top: 0 !important)
! ---
filmive-hd.net,kinoshack.net,tree.tv##body > .wrapper:style(margin-top: 0 !important)
! ---
filmix.date,filmix.life,filmix.my,filmix.pub,filmix.tech,filmix.zone##.main-wrapper:style(margin-top: 0 !important)
filmix.date,filmix.life,filmix.my,filmix.pub,filmix.tech,filmix.zone##.page-wrapper:style(margin-top: 0 !important)
! ---
filmozavr.com,filmozavr.net##.maincontent:style(margin-top: 0 !important)
! ---
films-online.club##.body-wrap > #content:style(margin-top:42px !important)
! ---
fclmnews.ru##.site:style(margin-top: 0 !important)
! ---
fishki.net###container:style(cursor: auto !important)
! ---
flashscore.com.ua,flashscore.ru.com,flashscore.ua,flashscorekz.com,livescore.in,soccerstand.com##[data-bookmaker-id]:style(pointer-events: none !important)
! ---
www.fontanka.ru###onesignal-promt-target > div:first-child
www.fontanka.ru##header > div[class^="funding_"]
! ---
forum.flprog.ru##.sitemaker > .grid > .sm-responsive-full-width:style(width: auto !important)
! ---
footballhd.ru##body > #header:style(margin-top: 0 !important)
! ---
footballhub.com.ua##.page-container:style(top: 0 !important)
! ---
forbes.ru##.jnrGz:style(height: calc(var(--vh, 1vh)*100 - 1px) !important)
! ---
fototips.ru##.ftips-branding .td-main-page-wrap:style(padding-top: 5px !important)
fototips.ru##.ftips-branding-ad + div:style(padding-top: 5px !important)
fototips.ru##.ftips-branding.td_category_template_1 .td-category-header:style(padding-top: 5px !important)
! ---
freehat.cc###page:style(max-width: 1600px !important; margin-top: 0 !important)
! ---
freeopenvpn.org###advert:style(height: 1px !important)
freeopenvpn.org##.adsbygoogle:style(max-height: 6px !important)
freeopenvpn.org##body > a[href][target="_blank"]
! ---
freetp.org,freetp.ru##.fix_block > nav:style(position: relative !important)
freetp.org,freetp.ru##.fix_block:style(position: relative !important)
freetp.org,freetp.ru##body.pagefullbg:style(padding-top: 50px !important)
! ---
fssprus.ru##.tingle-modal
fssprus.ru##html > body:style(overflow-y: auto !important; position: static !important)
! ---
galka.if.ua###fb-modal
galka.if.ua##body.modal-open > .modal-backdrop
galka.if.ua##body.modal-open:style(overflow: auto !important)
! ---
game-pool.ru##body:not(#id):style(background-image: none !important)
game-pool.ru##div[class^="container-content"] > div[class^="obolox"]:style(margin-top: 52px !important)
! ---
game2day.ru##body > .container:style(margin-top: 120px !important)
! ---
gamebomb.ru###content.site-max-width:style(margin-top: 0 !important; padding-top: 0 !important)
gamebomb.ru##body > div[id] > div[id]:style(background-image: none !important)
gamebomb.ru##body:style(background-color: #303030 !important; background-image: none !important)
! ---
gamegpu.com##a[href*="://artline.ua/"]:style(pointer-events: none !important)
gamegpu.com##a[href*="://bit.ly/"]:style(pointer-events: none !important)
! ---
gameguru.ru###mainContent > section:first-of-type:style(margin-top: unset !important)
gameguru.ru##body:style(background-image: none !important)
! ---
gamemag.ru##.comment-background:style(background: none !important)
gamemag.ru##.main-content:style(background: none !important)
gamemag.ru##.user-profile-section:style(margin-top: unset !important)
! ---
gamer-info.com##.roarticlecol:style(top: 2px !important)
gamer-info.com##body > div:not([id]):not([class]) > div[class] > div[class]:style(background-image: none !important)
gamer-info.com##body > div:not([id]):not([class]) > div[class]:style(padding-top: unset !important; background-color: inherit !important)
! ---
gasolina-online.com###facebook-modal
gasolina-online.com##body.modal-open > .modal-backdrop
gasolina-online.com##body.modal-open:style(overflow: auto !important)
! ---
gastronom.ru##body > div[class^="js-nh"]:style(margin-top: 115px !important)
! ---
gazeta.ua###ad-300 + .w:style(margin-top: unset !important)
! ---
gdetraffic.com##.main.with-top-menu:style(padding-top: 100px !important)
! ---
gecid.com##body > *:style(pointer-events: auto !important)
gecid.com##body:style(cursor: default !important; pointer-events: none !important; background-color: transparent !important)
! ---
! унификация дизайна русского домена с остальными
gismeteo.ru##.maps .maps-block:style(height: auto !important)
gismeteo.ru##.project-maps .wrap:style(max-width: 1010px !important)
gismeteo.ru##.project-weather .wrap:style(max-width: 1010px !important)
gismeteo.ru##.section-map-grid:style(display: unset !important)
! исправление ошибок и косяков оригинальной вёрстки
gismeteo.ru##.section-map-grid:style(margin-bottom: 20px !important)
! ---
glavnoe.ua###main-block > .content-block:style(margin: auto !important)
! ---
! исправление ошибок и косяков оригинальной вёрстки
glavpost.ua###navbar:style(position: relative !important)
! ---
glavred.info,glavred.net##.newsfeed:style(height: auto !important)
! ---
goclips.tv##.video_content:style(height: auto !important)
! ---
www.goha.ru##a[href^="https://www.goha.ru/~"]:style(pointer-events: none !important)
! ---
gol.ru##.wrapper__content-inner:not(#id):style(padding-top: 0 !important)
! ---
goodfon.ru##.wallpapers > [class^="wallpapers__item"]:style(margin-right: unset !important; width: 320px !important)
! ---
goodgame.ru##.main-block .main-inner-wrap:style(margin-top: 0 !important)
! ---
gotennis.ru##.page:style(padding-top: 0 !important)
! ---
! Франшиза Gorodor.ru
kaluga-poisk.ru,yasniy-city.ru,yola-poisk.ru##body:not(#id):style(background: whitesmoke !important)
! ---
intermedia.ru##.general_block > a[href][target="_blank"]
gorod.dp.ua,intermedia.ru,sefon.cc##html > body:style(padding-top: unset !important)
! ---
gotps3.ru###Page:style(margin-top: 0 !important)
! ---
govoritmoskva.ru##.rightColumn > .darkPart:style(height: auto !important)
govoritmoskva.ru##footer.pageContainer:style(height: auto !important)
! ---
great-tv.ru,vserialy.com,vserialy.fun###header_box:style(height: auto !important; min-height: auto !important)
! ---
! Домены Grouple и qawa.org
allhen.online,mintmanga.one##img[src]:style(filter: none !important)
! ---
growhow.in.ua##body:style(background-color: inherit !important)
! ---
gstv.ru##.page-content:style(margin-top: 0 !important)
! ---
gta-gaming.ru###link-b:style(display: block !important)
gta-gaming.ru##.first-b
! ---
gtavicecity.ru##.wrapper-body:style(margin-top: 0 !important)
! ---
gta.com.ua##body:style(background-image: none !important; background-color: #f5f5f5 !important)
! ---
gubkinskiy.com###page-content:style(margin-top: 0 !important)
! ---
h-chan.me##img[style^="filter: blur"]:style(filter: none !important)
! ---
hardwareluxx.ru##[href^="https://ya.cc/"]:style(pointer-events: none !important; color: inherit !important)
! ---
hdkinomir.cc###wrapper > .menu:style(margin-top: auto !important)
! ---
hdkinozzoro.ru##.jirrua:style(margin-top: 0 !important)
hdkinozzoro.ru##body:not(#id):style(padding-top: 0 !important)
! ---
! HDREZKA
ag,biz,buzz,by,city,club,co,com,fi,in,ink,kim,loan,me,name,net,org,pub,rest,run,sh,so,space,su,today,tv,vip,website,win##body[class^="has-brand"][class*=" active-brand"][class*="fixed-header"] > [id$="er"]:nth-child(-n+3):style(width: unset !important)
ag,biz,buzz,by,city,club,co,com,fi,in,ink,kim,loan,me,name,net,org,pub,rest,run,sh,so,space,su,today,tv,vip,website,win##body[class^="has-brand"][class*=" active-brand"][class*="fixed-header"]:style(padding-top: 0 !important; background-color: inherit !important)
! ---
hdru.net##.page:style(margin-top: 0 !important)
! ---
hellomagazine.com##.footer:style(position: relative !important)
! ---
hentai-share.one##.main .header:style(padding-top: 94px !important)
hentai-share.one##.showfull .header:style(padding-top: 60px !important)
hentai-share.one##img[src]:style(filter: none !important)
! ---
hentailib.me,slashlib.me,yaoilib.net##img[src^="https://cover.imglib.info/uploads/"]:style(filter: none !important)
! ---
hentaiz.org##.short-poster > img:style(filter: none !important; -webkit-filter: none !important)
! ---
hi-fi.ru##.page-branded:style(margin-top: 0 !important)
hi-fi.ru##body:style(background: none !important)
! ---
hi-tech.ua##body > noindex
hi-tech.ua##body:style(background-image: none !important; padding-top: 0 !important)
! ---
holod.media##.article__bg:style(left: 49% !important)
! ---
! Horror Web Медиасеть
russorosso.ru###wrapper > #header:style(margin-top: 0 !important)
horrorzone.ru##body > .all:style(margin-top: 0 !important)
darkermagazine.ru##body > .header:style(margin-top: 0 !important)
! ---
houzz.ru##.modal.in.modal-vc
houzz.ru##body.modal-open:style(overflow: auto !important)
houzz.ru##html:style(overflow: auto !important)
! ---
hs-manacost.ru###td-outer-wrap > *:style(pointer-events: auto)
hs-manacost.ru###td-outer-wrap:style(pointer-events: none)
hs-manacost.ru##body > *:style(pointer-events: auto)
hs-manacost.ru##body:style(background-image: none !important; background-color: whitesmoke !important)
hs-manacost.ru##body:style(pointer-events: none)
! ---
hvylya.net##.right-column > .b-newsfeed > span:style(margin-top: 0 !important)
! ---
i.ua##.body_container:style(padding-bottom: unset !important)
i.ua##.footer_container:style(height: auto !important; margin-top: auto !important)
! ---
ictv.ua##.video-stream > *:style(pointer-events: auto !important)
ictv.ua##.video-stream:style(background-image:none !important; pointer-events: none !important)
! ---
! Independent Media
grazia.ru,mentoday.ru,techinsider.ru,thevoicemag.ru##.preview-section .vertical-video__loader
grazia.ru,mentoday.ru,techinsider.ru,thevoicemag.ru##.preview-section .vertical-video__play-icon-wrapper:style(display: unset !important)
! ---
infocar.ua###totalbg:style(background-image: none !important)
! ---
infoua.biz###id_box_r_y1:style(position: absolute !important; top: -10000px !important; left: -10000px !important; height: 50px !important)
infoua.biz###idbbbad:style(position: absolute !important; top: -10000px !important; left: -10000px !important; height: 50px !important)
! ---
infourok.ru##.footer-slow-download__btn:style(color: #57a216 !important; font-size: 19px !important; font-weight: bold !important)
! ---
innal.top,zannn.top##body:style(margin-top: 0 !important)
innal.top,zannn.top##div#main:style(margin-top: 0 !important; margin-bottom: 0 !important)
innal.top,zannn.top##table.lista[width="100%"][style] > tbody > tr > td.header[width="110px"]:style(color: transparent !important)
! ---
inoprosport.ru##body > .page__wrapper:style(padding-top: 60px !important)
! ---
instagram.com##body[style*="overflow: hidden;"]:style(overflow: auto !important)
! ---
investing.com###PromoteSignUpPopUp
investing.com###__next > .fixed
investing.com###__next > style + div[class]:not([id])
investing.com###abPopup
investing.com##.ad-blocker-popup
investing.com##.js-general-overlay
investing.com##body:style(overflow: auto !important)
investing.com##div[class^="desktop"] > .hidden
! ---
iphones.ru###contentShifter:style(height: 127px !important)
! ---
isport.ua##body > .layout:style(margin-top: 0 !important)
! ---
it-actual.ru##.entry-content > [class*=" "][style="text-align: center;"]
it-actual.ru##.fltext:style(background: none !important; position: unset !important)
! ---
itc.ua##a[href*="://rdr.fmcgsd.net/in/offer/"]:style(pointer-events: none !important; color: unset !important; border-bottom: none !important)
itc.ua##a[href*="://telemart.ua/"]:style(pointer-events: none !important; color: unset !important; border-bottom: none !important)
itc.ua##a[href*="utm_"][target="_blank"]:style(pointer-events: none !important; color: unset !important; border-bottom: none !important)
itc.ua##a[href^="https://ek.ua/ua/"]:style(pointer-events: none !important; color: unset !important; border-bottom: none !important)
! ---
itnews.com.ua###content > #header > div[style^="height: 94px;"]:style(height: 6px !important)
itnews.com.ua###content > #header:style(height: 220px !important; background-position-y: -100px !important)
itnews.com.ua###right > div[style^="height:"]:style(height: 0 !important)
itnews.com.ua##td.left[width="200"][valign="top"]:style(height: auto !important)
! ---
ivanovonews.ru##body > .layout:style(padding-top: 50px !important)
! ---
www.ivi.ru##.headerNotify_hasUnread .nbl-simpleControlButton:style(animation: none !important)
www.ivi.ru##.page-wrapper > .content-main:style(padding-top: 0 !important)
www.ivi.ru##.rollPlus
ivi.ru##[data-test="watch_with_adv"] > .nbl-button__primaryText
www.ivi.ru##body.watch > div[class]:not([id]):not([style]):nth-child(-n+2) > style + .content
www.ivi.ru##body.watch > div[class]:not([id]):not([style]):nth-child(-n+2):style(background: none !important)
www.ivi.ru##body.watch > header.ivi-top:style(top: 0 !important)
! ---
ixbt.com##body:not(#id) > .b-content.b-content__breadcrumbs:style(margin-top: unset !important)
ixbt.com##body:not(#id) > .b-content__pagecontent:style(margin-top: unset !important)
ixbt.com##body:style(background-color: white !important)
! ---
forum.ixbt.com##.body_content_table > .left.column:style(margin-right: 0 !important; width: 100% !important)
forum.ixbt.com##.body_wrapper:style(max-width: 100% !important)
forum.ixbt.com##.fullscreen_branding ~ .body_content_table:style(margin-top: 0 !important; z-index: 0 !important)
forum.ixbt.com##.left.column > #question.dialog_thanks:style(left: 67% !important)
! ---
smb.ixbt.com##.smb-bg:style(background: none !important)
smb.ixbt.com##.wrapper > #tm:style(margin-bottom: auto !important)
!
www.ixbt.com###page-wrapper > #header:style(margin-bottom: auto !important)
ixbt.market,www.ixbt.com###page-wrapper > #wrapper:style(padding-top: 0 !important)
www.ixbt.com###page-wrapper > .tm-wrapper > .tm:style(margin-bottom: auto !important)
www.ixbt.com###page-wrapper:style(background-color: white !important)
! исправление ошибок и косяков оригинальной вёрстки
ixbt.market,www.ixbt.com###page-wrapper .container:style(max-width: 100% !important)
ixbt.com##.b-content__pagecontent > .b-content--wrapper > .g-grid:style(margin-top: unset !important)
! ---
ixbt.games##.main:style(margin-top: 2px !important)
ixbt.games,smb.ixbt.com##.tm-wrapper > .tm:style(margin-bottom: auto !important)
ixbt.games,smb.ixbt.com##body:not(#id):style(margin-top: 0 !important)
ixbt.games,smb.ixbt.com##body:style(background: #eee !important)
! ---
jut-su.net##body:not(#id):style(padding-top: 0 !important; padding-bottom: 0 !important)
! ---
kanaldim.tv,uatv.ua##body > .playerlive
! ---
kaztorka.org###main:style(max-width: 100% !important)
kaztorka.org##body:style(padding-top: 0 !important)
! ---
kg-portal.ru##.comments_form:style(min-height: 0 !important)
kg-portal.ru##.content_wrap > div[class^="content_"] > div > a[href^="/go.php?id="]
kg-portal.ru##.ten_ears_wrap:style(margin: 35px auto 0 auto !important)
kg-portal.ru##.ten_topbar + div:not(.ten_ears_wrap)
kg-portal.ru##.ten_topbar ~ div[class]:not([id]):nth-child(-n+10):not(.ten_ears_wrap):not(.content_wrap):not(.footer_wrap)
kg-portal.ru##.ten_topbar:style(height: 0 !important)
kg-portal.ru##body > .menu_wrap:style(position: relative !important)
kg-portal.ru##body:style(background-image: none !important; background-color: #bdbdbd !important)
! ---
kharkovforum.com##body > table > tbody > tr > td[align="center"]
! ---
sovet.kidstaff.com.ua##body:style(padding-top: 40px !important; background-image: none !important)
! ---
kino-teatr.ua##.imaband
ampercar.com,hi-news.ru,itechua.com,kino-teatr.ua,mmr.net.ua,uamotors.com.ua##body:style(background: none !important)
kino-teatr.ua##html:not(#id):style(background: none !important)
! ---
kino.video,tasix.me###embed-video > [id^="blink"]:style(-webkit-animation: none !important; animation: none !important; color: var(--color--normal) !important; font-weight: normal !important)
kino.video,tasix.me##.navbart > a[href] > .spin:style(animation-name: none !important)
kino.video,tasix.me##.publisher-name > [id^="blink"]:style(-webkit-animation: none !important; animation: none !important; color: var(--color--normal) !important; font-weight: normal !important)
! ---
kinoakter.net##body > div[class^="wrapper"]:style(margin-top: 0 !important)
! ---
kinokong.sk,kinokrad.la###wrapper:not(#id):style(margin-top: 67px !important)
! ---
kinokladovka.com##.b-background:style(background: none !important; padding-top: 0 !important)
! ---
kinomania.ru##.outer:style(padding-top: 0 !important)
! ---
kinometro.ru##body > .wrapper:style(background: none !important; padding-top: 0 !important; padding-bottom: 0 !important)
! ---
kinoprofi.vip##body .header .header-fixed:style(top: 0 !important)
kinoprofi.vip##body .header:style(padding-top: 0 !important)
! ---
kinorium.com##body:style(margin-top: auto !important)
! ---
kinoteatr.ru##.branding-wrapper
kinoteatr.ru##.header_container:style(margin-top: 0 !important)
kinoteatr.ru##html > body:style(background-image: none !important; background-color: black !important)
! ---
www.kinopoisk.ru###header-info-bg:style(background-color: transparent !important; background-image: none !important)
www.kinopoisk.ru###top > div[id][style^="height: 210px"]
www.kinopoisk.ru##.app div[class^="device"][class*=" page-main__content"]:style(background-color: black !important)
www.kinopoisk.ru##.film-seances-page:style(box-shadow: 0 -8px 15px #333333 !important)
www.kinopoisk.ru##.page-content > #header-info-bg + div[id]:not([class]):style(margin-bottom: 40px !important)
www.kinopoisk.ru##.shadow.shadow-restyle:style(box-shadow: 0 -8px 15px #333333 !important)
www.kinopoisk.ru##.top-banner-container
www.kinopoisk.ru##.user-subscription-partial-component__subscription-item-text:style(white-space: pre-wrap !important)
www.kinopoisk.ru##a[href^="https://kinopoisk.ru/special/"][href*="utm_campaign="]
www.kinopoisk.ru##aside.dialog
www.kinopoisk.ru##body[class*="styles_body"]:style(overflow: auto !important)
www.kinopoisk.ru##div[class*=" styles_basicInfoSection"]:style(padding-top: 40px !important)
www.kinopoisk.ru##div[class*=" styles_basicMediaSection"]:style(padding-top: 40px !important)
www.kinopoisk.ru##div[class*=" styles_videoContainer"]:style(margin-top: 0 !important)
www.kinopoisk.ru##div[class*="styles_baseContainer"] > div[class]:first-child > div[class]:first-child:style(min-height: 0 !important)
www.kinopoisk.ru##div[class*="styles_baseContainer"] > div[class]:first-child:style(min-height: 0 !important)
www.kinopoisk.ru##div[class^="styles_adBlockWarningRoot"]
www.kinopoisk.ru##div[class^="styles_themeTopBanner"]
www.kinopoisk.ru##div[class^="styles_wideContentContainer"] > div[class]:first-child:style(min-height: 0 !important)
www.kinopoisk.ru##div[class^="toaster-container"]
www.kinopoisk.ru##div[data-type="teaserspec"]
www.kinopoisk.ru##div[style="min-width: 1px;"]:style(min-height: 0 !important)
www.kinopoisk.ru##div[style="min-width:1px"]:style(min-height: 0 !important)
! правила для обфусцированной версии
www.kinopoisk.ru##.app__page > div[class*="-container_"]:not([class*="media"]):not([class*="content"]):first-child
www.kinopoisk.ru##.desktop-layout-with-sidebar__middle > .desktop-layout-with-sidebar__wrapper > div[class*="-container_"]:not([class*="kinopoisk"]):first-child
www.kinopoisk.ru##.media-post-page > div[class*="-container_"]:not([class*="media"]):first-child
www.kinopoisk.ru##.page-content > div[id]:not(#header-info-bg):empty
www.kinopoisk.ru##.page-content > div[id]:not(#header-info-bg):empty + div[id]:not(#top):style(margin-bottom: 40px !important)
www.kinopoisk.ru##div[class*="kinopoisk-media-container_pending"]:style(min-height: 0 !important)
www.kinopoisk.ru##div[id*="_superbanner_"]
! исправление ошибок и косяков оригинальной вёрстки
www.kinopoisk.ru###actorListBlock:style(padding-right: 19px !important)
www.kinopoisk.ru##.content-container_app-width_wide:style(max-width: 100% !important)
www.kinopoisk.ru##.desktop-layout-with-sidebar__content > div[class][data-tid]:style(width: auto !important)
www.kinopoisk.ru##.filmsListNew .info:style(padding-right: 116px !important)
www.kinopoisk.ru##.header-navigation:style(max-width: 100% !important)
www.kinopoisk.ru##.modal-root div[class^="fullscreen-selector"]:style(opacity: inherit !important)
www.kinopoisk.ru##div > a[aria-label="КиноПоиск"] ~ div > button ~ div:style(opacity: inherit !important)
www.kinopoisk.ru##div[class*="styles_headerContainer"] + div[class^="styles_"]:style(max-width: 100% !important)
www.kinopoisk.ru##div[class*="user-bar"] > div > button ~ div:style(opacity: inherit !important)
www.kinopoisk.ru##div[class^="styles_emptyItems__"] div:style(background-color: transparent !important)
www.kinopoisk.ru##div[class^="styles_footerContainer__"]:style(max-width: 100% !important)
! ---
kinovibe.co##.center-box2:style(margin-top: 0 !important)
! ---
kirovnet.ru##.bg_container:style(padding-top: 0 !important)
kirovnet.ru##.subbody2:style(margin-top: 0 !important)
! ---
kirov.online##.bg_container > .wrapper-content:style(padding-top: 0 !important)
! ---
klops.ru##.page-detail .section-detail-news:style(margin-left: 0 !important)
! ---
ko.com.ua##.gbg:style(top: auto !important)
!
korabel.ru##div[id^="newsid_"] > .row0[style="margin-bottom:8px;"]:style(pointer-events: none !important)
! ---
kp.ru###allrecords > #t-header + div + div[id^="rec"][style*="padding-top:"]:style(padding-top: 0 !important)
kp.ru###allrecords > #t-header + div[id^="rec"][style*="padding-top:"]:style(padding-top: 0 !important)
kp.kg,kp.kz,kp.md,kp.ru##.page-header__promo-btn[href*="/reklama/"]
kp.ru##.page-wrapper > .page-inner:style(margin-top: auto !important)
kp.kg,kp.kz,kp.md,kp.ru##[data-test-id="News_SpecialArticle"] + div[class]:not(:empty) + div[class]:not(:empty):style(min-height: auto !important)
kp.kg,kp.kz,kp.md,kp.ru##[data-test-id="News_SpecialArticle"] + div[class]:not(:empty):style(min-height: auto !important)
kp.kg,kp.kz,kp.md,kp.ru##[data-test-id="News_SpecialArticle"] ~ div[class]:empty + div[class]:not(:empty) + div[class]:not(:empty):style(min-height: auto !important)
kp.kg,kp.kz,kp.md,kp.ru##[data-test-id="News_SpecialArticle"] ~ div[class]:empty + div[class]:not(:empty):style(min-height: auto !important)
kp.kg,kp.kz,kp.md,kp.ru##[data-test-id="News_SpecialArticle"]:empty:style(min-height: auto !important)
kp.kg,kp.kz,kp.md,kp.ru##a[href^="https://advert.kp.ru"]
kp.kg,kp.kz,kp.md,kp.ru##body > #app [data-branding-wrapper]:style(padding-top: 0 !important)
kp.kg,kp.kz,kp.md,kp.ru##body > #app div[style="display:block !important"] > div:first-child > div:first-child + div > div:first-child + div > div[data-name]:first-child + div:style(margin-top: auto !important)
! ---
! krasview.ru - зеркала
hlamer.ru,ru##body[style*="://image.krasview.ru/channel"]:style(background-color: #596c84 !important)
! ---
kriminal.net.ua,news.dn.ua###popup-manager.popup-show
kriminal.net.ua,news.dn.ua###popup-manager.popup-show + #layout:style(-webkit-filter: none !important; filter: none !important)
! ---
kredos.com.ua,smartphone.ua###header:style(height: auto !important)
! ---
kufar.by##div[class*=" styles_empty_collapse"]
! ---
kv.by###page:style(top: 0 !important)
! ---
l2top.ru##.container[style="max-width: unset;"] > .container:style(margin-top: auto !important)
! ---
lafa.site##.wrapper-header:style(margin-top: 0 !important)
! ---
latifundimag.com##body > .wrapper > *:style(pointer-events: auto !important)
latifundimag.com##body > .wrapper:style(pointer-events: none !important)
! ---
leingpt.ru##.m-container > #yandex_rtb_R:style(display: block !important)
! ---
lenta.ru##.longgrid-list__box:style(justify-content: unset !important)
! ---
libertycity.net,libertycity.ru##.down_link > .wl:not([style])
libertycity.net,libertycity.ru##.downloada > .btn:style(font-size: large !important; color: #b4ff00 !important)
libertycity.net,libertycity.ru##.downloada:style(display: block !important)
libertycity.net,libertycity.ru##.main_shift:style(height: 100px !important)
! ---
lifehacker.ru##.recipes-layout__content:style(margin-top: 0 !important)
! ---
lifetambov.ru##.theme-wrapper > .container > div:style(padding-bottom: unset !important)
! ---
livecars.ru,livesport.ru##.content:style(margin-top: 0 !important)
! ---
liveinternet.ru##.allpage .currency a:style(pointer-events: none !important)
liveinternet.ru##[style="margin-top:-24px;"] ~ .leftcolumn > div ~ div
liveinternet.ru##[style="margin-top:-24px;"] ~ br + div
! исправление ошибок и косяков обфусцированной вёрстки
www.liveinternet.ru##:not(.allpageinner) > :not(.header) > .logo > a[href="/"] > span:style(top: inherit !important; left: inherit !important; font-size: x-large !important; font-weight: bold !important; color: #0183cb !important)
! ---
! LiveJournal
www.livejournal.com##.mainpage > div[class]:style(min-height: 0 !important)
lena-miro.ru,levik.blog,livejournal.com,olegmakarenko.ru,periskop.su,shakko.ru,shiro-kino.ru,vadimrazumov.ru##.mdspost > div[class]:style(min-height: 0 !important)
livejournal.com##.s-layout > div[class]:style(min-height: 0 !important)
lena-miro.ru,levik.blog,livejournal.com,olegmakarenko.ru,periskop.su,shakko.ru,shiro-kino.ru,vadimrazumov.ru##header > div[class]:style(min-height: 0 !important)
! ---
liveresult.ru##.main:style(margin-top: 0 !important)
! ---
livesport.ws##body > div:not([id]):not([class]) + div:not([id]):not([class]) + div:not([id]):not([class]) + div:not([id]):not([class]) ~ div[id]:not([class])
livesport.ws##body:style(padding-top: 0 !important)
! ---
lostfilm.info###neheraplper_9000 > a[href] > span
lostfilm.info##.footer-logo:style(filter: invert(0.8) !important)
lostfilm.download,lostfilm.life,lostfilm.one,lostfilm.pro,lostfilm.space,lostfilm.today,lostfilm.tv,lostfilm.tw,lostfilm.uno,lostfilm.win,lostfilmtv.site,lostfilmtv.uno,lostfilmtv2.site,lostfilmtv3.site,lostfilmtv5.site##.footer:style(background: #1c1e1f !important; color: #fff !important)
lostfilm.download,lostfilm.life,lostfilm.one,lostfilm.pro,lostfilm.space,lostfilm.today,lostfilm.tv,lostfilm.tw,lostfilm.uno,lostfilm.win,lostfilmtv.site,lostfilmtv.uno,lostfilmtv2.site,lostfilmtv3.site,lostfilmtv5.site##.gallery_img_preload:style(position: absolute !important; display: block !important; opacity: 0 !important; margin-top: 155px !important; margin-left: 20px !important; width: calc(100% - 40%);)
lostfilm.download,lostfilm.life,lostfilm.one,lostfilm.pro,lostfilm.space,lostfilm.today,lostfilm.tv,lostfilm.tw,lostfilm.uno,lostfilm.win,lostfilmtv.site,lostfilmtv.uno,lostfilmtv2.site,lostfilmtv3.site,lostfilmtv5.site##.lstfml .footer .links a:style(color: #fff !important)
lostfilm.download,lostfilm.life,lostfilm.one,lostfilm.pro,lostfilm.space,lostfilm.today,lostfilm.tv,lostfilm.tw,lostfilm.uno,lostfilm.win,lostfilmtv.site,lostfilmtv.uno,lostfilmtv2.site,lostfilmtv3.site,lostfilmtv5.site##body > * > div[style^="padding-top"]
lostfilm.download,lostfilm.life,lostfilm.one,lostfilm.pro,lostfilm.space,lostfilm.today,lostfilm.tv,lostfilm.tw,lostfilm.uno,lostfilm.win,lostfilmtv.site,lostfilmtv.uno,lostfilmtv2.site,lostfilmtv3.site,lostfilmtv5.site##body > a[onclick]
lostfilm.download,lostfilm.life,lostfilm.one,lostfilm.pro,lostfilm.space,lostfilm.today,lostfilm.tv,lostfilm.tw,lostfilm.uno,lostfilm.win,lostfilmtv.site,lostfilmtv.uno,lostfilmtv2.site,lostfilmtv3.site,lostfilmtv5.site##body > div:not([id]):not([class]):not([style])
lostfilm.download,lostfilm.life,lostfilm.one,lostfilm.pro,lostfilm.space,lostfilm.today,lostfilm.tv,lostfilm.tw,lostfilm.uno,lostfilm.win,lostfilmtv.site,lostfilmtv.uno,lostfilmtv2.site,lostfilmtv3.site,lostfilmtv5.site##body > span:nth-child(-n+6)
lostfilm.download,lostfilm.life,lostfilm.one,lostfilm.pro,lostfilm.space,lostfilm.today,lostfilm.tv,lostfilm.tw,lostfilm.uno,lostfilm.win,lostfilmtv.site,lostfilmtv.uno,lostfilmtv2.site,lostfilmtv3.site,lostfilmtv5.site##body:style(background-image: none !important; background-color: #1c1e1f !important)
lostfilm.info##img[src="/vision/footer-logo.png"]:style(filter: invert(0.8) !important)
! ---
lrepacks.net##[href*="poluchenie-premium-dostupa.html"] > b > .fa-spin:style(animation: none !important)
! ---
lurkmore.wtf###localNotice .floatleft img:style(height: 70px !important; width: auto !important)
! ---
m24.ru##.vjs-big-play-button:style(background: #0fc3c3 !important)
! ---
mc.today##.category-all #content:style(background-image: none !important; cursor: auto !important)
! ---
! сайты Mediafort.ru
asienda.ru,mycharm.ru,myjane.ru###pagewrapper:style(margin-top: 0 !important)
relook.ru###topcontainer:style(margin-top: 40px !important)
stranamam.ru##.n-main-branding-container:style(margin-top: 0 !important)
povarenok.ru##.page-width:style(margin-top: 0 !important)
povarenok.ru##.sp-header-block:style(height: 50px !important)
diets.ru##body > #container:style(top: 0 !important)
asienda.ru,diets.ru,mycharm.ru,myjane.ru,povarenok.ru,relook.ru,stranamam.ru##body:style(background-color: inherit !important)
! ---
mediasat.info##.td-ad-background-link #td-outer-wrap:style(cursor: default !important)
! ---
mega.io,mega.nz##.cookie-dialog
mega.io,mega.nz##.fm-dialog-overlay
mega.io,mega.nz##.overlayed .bottom-page.scroll-block:style(filter: none !important; -webkit-filter: none !important)
! ---
megogo.net###videoViewPlayer:style(padding-top: unset !important)
! ---
mel.fm##.i-layout__branding-content-wrapper:style(margin-top: 0 !important)
mel.fm##.i-layout_branding:style(background-image: none !important)
! ---
meta.ua##.infobar > .info-block:not(.mail):not(.weather):style(border: none !important)
! ---
mintmanga.live,selfmanga.live##.hide-dn img:style(filter: none !important)
! ---
www.mirf.ru##main[style^="background-color:"]:style(background-color: inherit !important)
! ---
gamma.mirtesen.ru##.aggregator-page:style(pointer-events: none !important; opacity: 0 !important)
! ---
mivmeste.info###SITE_PAGES > div > div[id]:style(min-height: auto !important)
mivmeste.info##[data-mesh-id]:style(min-height: auto !important; height: auto !important)
! ---
mmo13.ru###page > .content:style(margin-top: 74px !important)
mmo13.ru##.header-wrapper:style(min-height: 0 !important)
mmo13.ru##div[class^="bnr-background"]
! ---
mobile-review.com##body > .navbar:style(margin-top: 0 !important)
mobile-review.com##html > body:style(background-color: white !important)
! ---
mobiltelefon.ru###gl_pos1:style(min-width: auto !important; width: unset !important)
mobiltelefon.ru###main_tb:style(top: 0 !important)
mobiltelefon.ru###move_up[style*="left: -40px;"]:style(left: 0 !important)
mobiltelefon.ru##html > body:style(background-color: #f7f8f9 !important)
! ---
modernrock.ru##body:style(background: none !important)
! ---
more.tv##.framework__subscription
! ---
moscowtimes.eu,moscowtimes.ru##.contribute-modal
moscowtimes.eu,moscowtimes.ru##body:style(overflow: auto !important)
! ---
motorpage.ru##body.noscroll::before:style(content: none !important)
motorpage.ru##body.noscroll:style(overflow: auto !important)
! ---
movieshok.ru##.wrapp_content:style(margin-top: 0 !important)
! ---
my-hit.org##.navbar-default:style(margin-bottom: 0 !important)
! ---
myseason.club##.wrapper main:style(margin-top: 0 !important)
! ---
myshows.me##.DefaultLayout-main:style(margin-top: 0 !important)
myshows.me##.LayoutWrapper__promo ~ .LayoutWrapper__main:style(margin-top: 0 !important)
myshows.me##body:style(padding-right: unset !important; overflow: auto !important)
! ---