Last active
October 1, 2018 12:00
-
-
Save jotaelesalinas/cdb8b8ae9f0a6b0b93b73a6ade9cb5f8 to your computer and use it in GitHub Desktop.
Clean tplus tutorials
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var remove = [ | |
'.global-nav', | |
'.avert', | |
'.content-heading', | |
'.content-banner__content-breadcrumb', | |
'.content-author', | |
'.post__footer', | |
'.avert--sticky', | |
'.layout__sidebar', | |
'.market-highlight', | |
'.ecosystem-highlight', | |
'.page-footer', | |
'.content-banner__icon', | |
'.roundup-block__contents', | |
'.quick-links' | |
]; | |
var fix_width = [ | |
'.content', | |
'.content-banner-restricted-width', | |
'.post .layout__content-with-sidebar' | |
]; | |
$(remove.join(', ')).remove(); | |
$(fix_width.join(', ')).css({"max-width": 'inherit', "width": 'inherit'}); | |
$('body').css({"padding": '2em', "padding-bottom": '0'}); | |
$('.topic-code.page-content').css({"border": '0'}); | |
$('main.content').css({"margin-bottom": '0'}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment