Don't break subtitle partially

This commit is contained in:
Philipp Oppermann
2015-10-25 14:22:16 +01:00
parent f48ebb3961
commit a2cebb7fcb
2 changed files with 4 additions and 3 deletions

View File

@@ -9,11 +9,11 @@
<header class="masthead"> <header class="masthead">
<h3 class="masthead-title"> <h3 class="masthead-title">
<a href="{{ site.baseurl }}/" title="Home">{{ site.full_title }}</a> <a href="{{ site.baseurl }}/" title="Home">{{ site.full_title }}</a>
<small>{{ site.tagline }}</small>
<span class="navigation"> <span class="navigation">
{% for page in site.navigation_pages %} {% for page in site.navigation_pages %}
<small><a href="{{ page[1] }}">{{ page[0] }}</a></small> <small><a href="{{ page[1] }}">{{ page[0] }}</a></small>
{% endfor %}</span> {% endfor %}</span>
<small>{{ site.tagline | replace:' ','&nbsp;' }}</small>
</h3> </h3>
</header> </header>

View File

@@ -25,10 +25,11 @@
} }
} }
.masthead-title small { .masthead-title a:first-child {
margin-left: 1rem; padding-right: 0.5rem;
} }
.navigation { .navigation {
float: right; float: right;
} }