Skip to content

Instantly share code, notes, and snippets.

@ribafs
Forked from memeplex/extra.js
Created August 24, 2022 11:04
Show Gist options
  • Save ribafs/be4065fdfecd67f2b2427cd5e16b472e to your computer and use it in GitHub Desktop.
Save ribafs/be4065fdfecd67f2b2427cd5e16b472e to your computer and use it in GitHub Desktop.
Mkdocs bootswatch tweaks
// Hide sidebar with less than 2 entries.
var sidebar = $('.bs-sidebar')
var entries = sidebar.children().first()
if (entries.children().length <= 1)
sidebar.css('display', 'none')
else {
entries.children(':not(.main)').css('text-indent', '10px')
}
$('h1').css('font-weight', 'bold')
$('h1').css('font-size', '32px')
$('h2').css('font-size', '28px')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment