Header Styling

This commit is contained in:
seiichiro 2022-01-11 20:18:05 +01:00
parent 9736e8d51c
commit 8b46517fa9
2 changed files with 7 additions and 1 deletions

View file

@ -45,6 +45,12 @@ body {
padding-left: 8px;
}
.page-header .title .crumb{
font-size: 1.5em;
vertical-align: center;
padding: 2px;
}
/* Search Form Styling */
.page-header .search {
justify-self: right;

View file

@ -9,7 +9,7 @@
<a href="{{ $startpage }}">{{ $galleryname }}</a>
{% if (!empty($crumbs)): %}
{% foreach($crumbs as $name => $path): %}
<span> / </span><a href="index.php?d={{ $path }}&s={{ $slice }}&p=1">{{ $name }}</a>
<span class="crumb"> / </span><a class="crumb" href="index.php?d={{ $path }}&s={{ $slice }}&p=1">{{ $name }}</a>
{% endforeach %}
{% endif %}
</div>