Skip to content

Instantly share code, notes, and snippets.

@memeplex
Created August 2, 2016 20:41
Show Gist options
  • Save memeplex/8803c89d699d326c72a953d4d75883cb to your computer and use it in GitHub Desktop.
Save memeplex/8803c89d699d326c72a953d4d75883cb 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