Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
/* 1) Disables advertisements on-screen - Quality of Life */
.ad-slot-placeholder,
.top-ads-container {
display: none !important;
}
/* 2) Link Customization - Taken from SCP:S Testing Grounds */
.resizable-container a:hover {
color: #F8F1AE !important;
text-decoration: none;
-webkit-transition: all .5s;
-moz-transition: all .5s;
-ms-transition: all .5s;
-o-transition: all .5s;
transition: all .5s
}
/* 3) Making Comments DOORS-Themed */
.theme-fandomdesktop-dark div[data-testid="article-comments__comment"] {
background-color: rgba(0,0,0, .3);
border: 1px solid #D0AE82;
}
.theme-fandomdesktop-light div[data-testid="article-comments__comment"] {
background-color: rgba(var(--theme-page-background-color--rgb), .9);
border: 1px solid #D0AE82;
}
/* 4) Making TOC DOORS-Themed */
.page-content #toc {
background: rgba(0,0,0, .3);
border: 2px solid #D0AE82;
border-radius: 5.25px
}
#toc > ul {
display: block;
margin: 5px;
padding: 10px;
transition: padding .25s
}
#toc > ul a {
padding: 2.5px;
line-height: 1.75em;
transition: line-height .25s, opacity .425s .25s;
display: grid;
grid-template-columns: max-content auto
}
#toc .toctogglecheckbox:checked ~ ul a {
line-height: 0px;
transition: line-height .225s .2s, opacity .425s, visibility 0s .725s;
opacity: 0;
visibility: hidden
}