Design series – jump navigation
I introduced the possibility to jump to an individual month. To make this visually a bit nicer I do the following changes.
In _layouts/home.html
, I annotate the date list with a class:
<ul class="jump-nav">
And in _sass/minima.scss
:
:root {
…
--box-shade: #f8f8ff;
…
}
.jump-nav {
background: var(--box-shade);
margin-top: var(--norm-size);
list-style-type: none;
}
That’s it.