style tweaks
This commit is contained in:
parent
d2888356b4
commit
4260eb4134
|
@ -36,16 +36,25 @@
|
|||
<body>
|
||||
<div class="container">
|
||||
<div class="nav">
|
||||
{% for ni in collections.page %}
|
||||
{{navItem(ni.data.title, ni.data.permalink, not loop.last )}}
|
||||
{% endfor %}
|
||||
<span> | </span>
|
||||
{% for ni in nav %}
|
||||
{{navItem(ni.title, ni.url, not loop.last , '_blank')}}
|
||||
{% endfor %}
|
||||
<span> | </span>
|
||||
{{navItem("RBLicht", "https://rblicht.nl", true, '_blank')}}
|
||||
{{navItem("RBSolutions", "https://rbsolutions.cc", false, '_blank')}}
|
||||
<a class="d-inline-block main-logo" href="/">
|
||||
Rik Berkelder
|
||||
</a>
|
||||
<div class="d-inline-block">
|
||||
{% for ni in collections.page %}
|
||||
{{navItem(ni.data.title, ni.data.permalink, not loop.last )}}
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div class="d-inline-block">
|
||||
<span> | </span>
|
||||
{% for ni in nav %}
|
||||
{{navItem(ni.title, ni.url, not loop.last , '_blank')}}
|
||||
{% endfor %}
|
||||
</div>
|
||||
<div class="d-inline-block">
|
||||
<span> | </span>
|
||||
{{navItem("RBLicht", "https://rblicht.nl", true, '_blank')}}
|
||||
{{navItem("RBSolutions", "https://rbsolutions.cc", false, '_blank')}}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
{{content | safe}}
|
||||
|
|
|
@ -59,13 +59,21 @@ body {
|
|||
.nav {
|
||||
width: 100%;
|
||||
|
||||
padding-bottom: 0.6em;
|
||||
padding-top: 0.2rem;
|
||||
padding-bottom: 0.9em;
|
||||
margin-bottom: 0.6em;
|
||||
border-bottom: 1px $grey-dark solid;
|
||||
|
||||
a.main-logo {
|
||||
font-weight: 700;
|
||||
font-size: 1.2em;
|
||||
text-decoration: none;
|
||||
color: $text-default !important;
|
||||
}
|
||||
|
||||
a,
|
||||
a:visited {
|
||||
color: $primary !important;
|
||||
color: $primary;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -97,4 +105,8 @@ body {
|
|||
padding: 0.1rem 0.4rem;
|
||||
display: inline-block;
|
||||
}
|
||||
}
|
||||
|
||||
.d-inline-block {
|
||||
display: inline-block;
|
||||
}
|
Loading…
Reference in New Issue