Hide false header element from the TOC

This commit is contained in:
Philipp Hansch 2017-05-29 21:20:17 +02:00
parent abd3333b9f
commit 932b2814b0
No known key found for this signature in database
GPG Key ID: 667C8F4B5A698A60
2 changed files with 6 additions and 2 deletions

View File

@ -2,7 +2,7 @@
<div id="headline">
<img class="qutebrowser-logo" src="/icons/qutebrowser.svg" alt="qutebrowser" />
<div class="text">
<h1>qutebrowser</h1>
<span class="heading-text">qutebrowser</span>
A keyboard-driven browser.
</div>
</div>

View File

@ -44,9 +44,13 @@ p {
text-align: right;
}
#headline .text h1 {
#headline .text .heading-text {
color: #1e89c6;
font-weight: bold;
font-size: 2em;
border: none;
display: block;
white-space: pre-line;
}
#headline .text {