diff --git a/docs/css/extra.css b/docs/css/extra.css index 81a2bfe8..44ceea16 100644 --- a/docs/css/extra.css +++ b/docs/css/extra.css @@ -3,6 +3,12 @@ div.col-md-9 h1:first-of-type { font-size: 60px; font-weight: 300; } + div.col-md-9 p:first-of-type { text-align: center; } + + +div.col-md-9 h1:first-of-type .headerlink { + display: none; +} diff --git a/mkdocs.yml b/mkdocs.yml index 14b3e7f1..bd081ec2 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -13,5 +13,9 @@ pages: - ['about/release-notes.md', 'About', 'Release Notes'] - ['about/contributing.md', 'About', 'Contributing'] +markdown_extensions: + toc: + permalink: "" + copyright: Copyright © 2014, Tom Christie. google_analytics: ['UA-27795084-5', 'mkdocs.org'] diff --git a/mkdocs/themes/mkdocs/css/base.css b/mkdocs/themes/mkdocs/css/base.css index 0b07eb48..b4051e34 100644 --- a/mkdocs/themes/mkdocs/css/base.css +++ b/mkdocs/themes/mkdocs/css/base.css @@ -180,3 +180,14 @@ footer { width: 263px; } } + +.headerlink { + font-family: FontAwesome; + font-size: 14px; + display: none; + padding-left: .5em; +} + +h1:hover .headerlink, h2:hover .headerlink, h3:hover .headerlink, h4:hover .headerlink, h5:hover .headerlink, h6:hover .headerlink{ + display:inline-block; +}