Improves the UI of thegodofhighschool.online, mainly removing the boundaries between images and hiding elements that block or take away from the pictures
Improve thegodofhighschool.online by neroist
Details
Authorneroist
LicenseUnlicense
Categorythegodofhighschool.online
Created
Updated
Size984 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Removes the boundary between images in thegodofhighschool.online, also hides sticky ads at the bottom and the navigation bar at the top, as well as the dark mode switcher button.
Source code
/* ==UserStyle==
@name Remove bars in thegodofhighschool.online
@version 20240331.08.08
@namespace userstyles.world/user/neroist
@description Improves the UI of thegodofhighschool.online, mainly removing the boundaries between images and hiding elements that block or take away from the pictures
@author neroist
@license Unlicense
@var select nav-display "Navigation bar display (set to 'none' to hide)" ["none", "block"]
@var range dark-mode-switcher-opacity "Dark mode button opacity" [0, 0, 1, 0.05]
==/UserStyle== */
@-moz-document domain("wwv.thegodofhighschool.online") {
div.entry-content p {
margin-bottom: 0px;
}
div.entry-content div.code-block.code-block-3 {
display: none !important;
}
nav {
display: none;
}
div.wp-dark-mode-switcher {
opacity: var(--dark-mode-switcher-opacity);
}
.sticky-ads, #sticky-ads {
display: none;
}
}