Remove clutter from geeksforgeeks.
www.geeksforgeeks.org by totoro_ghost
Imported and mirrored from https://github.com/shivanshu-semwal/gfg-stylesheet/raw/master/stylesheet.user.css
Details
Authortotoro_ghost
LicenseMIT
Categoryhttps://www.geeksforgeeks.org/
Created
Updated
Size1.6 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 www.geeksforgeeks.org
@version 1.0.1
@namespace userstyles.world/user/totoro_ghost
@description Remove clutter from geeksforgeeks.
@homepageURL https://github.com/shivanshu-semwal/gfg-stylesheet
@supportURL https://github.com/shivanshu-semwal/gfg-stylesheet/issues
@author totoro_ghost
@license MIT
==/UserStyle== */
@-moz-document domain("www.geeksforgeeks.org") {
/* removing the top header */
.header-main__slider {
display: none;
}
/* removing the space occupied by the header*/
#main {
padding: 0;
}
/* removing the left sidebar*/
.sideBar {
display: none;
}
/* removing the right sidebar*/
.rightBar {
display: none;
}
/* extending the width of the sidebar*/
.article--viewer {
width: 100vw;
/* width: 100%; */
overflow: none;
}
/* the default font for the code*/
.syntaxhighlighter a,
.syntaxhighlighter code,
.syntaxhighlighter div,
.syntaxhighlighter table,
.syntaxhighlighter table caption,
.syntaxhighlighter table tbody,
.syntaxhighlighter table td,
.syntaxhighlighter table thead,
.syntaxhighlighter table tr,
.syntaxhighlighter textarea {
font-family: "Iosevka Term", "Ubuntu Mono", Consolas, "Bitstream Vera Sans Mono", "Courier New",
Courier, monospace !important;
}
/* * {
font-family: "Iosevka Term" !important;
}
.code-container {
font-family: "Iosevka Term" !important;
}
.leftBar {
flex-basis: 100% !important;
max-width: 100% !important;
}
.rightBar {
display: none !important;
} */
}