To make tables usable again, it comes with a custom scrollbar and hidden secondary and tertiary navigations.
fandom, no sidebars, full screen, responsive by Maikoli
Details
AuthorMaikoli
LicenseNo License
Categorywarframe.fandom.com
Created
Updated
Size1.3 kB
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name fandom.com with costum scrollbar, hidden navigations and responsive design.
@namespace github.com/openstyles/stylus
@version 1.0.5
@description To make tables usable again, it comes with a custom scrollbar and hidden secondary and tertiary navigations.
@author Maikoli
==/UserStyle== */
@-moz-document domain("fandom.com") {
.community-header-wrapper {
height: calc(148px - 24px);
}
.resizable-container {
max-width: 100%;
width: 97%;
}
.page__right-rail.is-rail-hidden, .global-navigation, .page__right-rail {
display: none;
}
.page.has-right-rail {
display: block!important;
}
.page__main {
width: 100%;
padding: 1.5%;
}
.main-container {
margin: 0px;
width: 100%;
}
.fandom-sticky-header {
left: 1.5%;
right: 1.5%;
}
.page-side-tool.content-size-toggle {
display: none;
}
.right-rail-toggle {
display: none;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
background: #666;
}
::-webkit-scrollbar-thumb {
background: #999;
}
::-webkit-scrollbar-thumb:hover {
background: #1f1f1f;
}
}