Hides the shitty Anti-Adblock popup!
/* ==UserStyle==
@name Nintendo Life Anti-Adblock Remover
@namespace github.com/CodyMKW/My-Userstyles
@version 1.0.0
@description Hides the shitty Anti-Adblock popup!
@homepageURL https://sites.google.com/view/codys-nintendo-room/userstyles
@supportURL https://github.com/CodyMKW/My-Userstyles/issues
@author CodyMKW (https://codymkw.github.io)
@license CC-BY-SA-4.0
==/UserStyle== */
@-moz-document domain("nintendolife.com") {
html, body {
overflow-y: visible !important;
height: 634px !important;
}
div[class*='sp_veil'], div[id^='sp_message_id'], div[id^='sp_message_panel_id'] {
display: none !important;
}
/* width */
::-webkit-scrollbar {
width: 10px !important;
}
/* Track */
::-webkit-scrollbar-track {
background: #f1f1f1 !important;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #888 !important;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #555 !important;
}
}