added option for mobile hamburger menu for main nav; searchbar on mobile stretches to full width; tweaked header items alignment
This commit is contained in:
parent
4e6095228c
commit
724b8e2fe2
|
@ -55,6 +55,7 @@ summaryLength = 70 # number of words for article summaries
|
||||||
enableSearch = true # enable search page
|
enableSearch = true # enable search page
|
||||||
searchbarEverywhere = true # if the searchbar should be shown in every page; requires enableSearch
|
searchbarEverywhere = true # if the searchbar should be shown in every page; requires enableSearch
|
||||||
searchMenuLink = false # add a search link to the navigation menu; requires enableSearch
|
searchMenuLink = false # add a search link to the navigation menu; requires enableSearch
|
||||||
|
mobileHamburgerNav = false # alternative hamburger menu layout for the main nav menu when screen is small
|
||||||
|
|
||||||
enableFeatured = false # enable a particular view for articles marked as featured (featured: true in the article frontmatter)
|
enableFeatured = false # enable a particular view for articles marked as featured (featured: true in the article frontmatter)
|
||||||
|
|
||||||
|
|
|
@ -69,56 +69,6 @@ footer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#titleContainer {
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
flex-wrap: nowrap;
|
|
||||||
align-items: center;
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-weight: normal;
|
|
||||||
font-size: 1.6em;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
img {
|
|
||||||
margin-right: 10px;
|
|
||||||
width: 50px;
|
|
||||||
max-height: 50px;
|
|
||||||
border-radius: 5px;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
nav, #links {
|
|
||||||
ul {
|
|
||||||
list-style-type: none;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
padding: 0;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
nav {
|
|
||||||
font-size: .9em;
|
|
||||||
ul {
|
|
||||||
li {
|
|
||||||
border-right: 1px solid $accent_color;
|
|
||||||
&:last-child {
|
|
||||||
border-right: none;
|
|
||||||
}
|
|
||||||
a {
|
|
||||||
padding: 2px 20px;
|
|
||||||
color: $accent_color;
|
|
||||||
&:hover {
|
|
||||||
text-decoration: underline;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#links {
|
#links {
|
||||||
padding: 5px 0 40px 0;
|
padding: 5px 0 40px 0;
|
||||||
}
|
}
|
||||||
|
@ -216,6 +166,7 @@ h1, h2, h3, h4, h5, h6 {
|
||||||
}
|
}
|
||||||
|
|
||||||
.nerdlink {
|
.nerdlink {
|
||||||
|
transition: all .15s ease-in-out;
|
||||||
@extend .nerd;
|
@extend .nerd;
|
||||||
color: $fg_color;
|
color: $fg_color;
|
||||||
border-bottom: none;
|
border-bottom: none;
|
||||||
|
@ -226,6 +177,7 @@ h1, h2, h3, h4, h5, h6 {
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
.pseudofont {
|
.pseudofont {
|
||||||
|
transition: all .15s ease-in-out;
|
||||||
fill: $fg_color;
|
fill: $fg_color;
|
||||||
display: inline;
|
display: inline;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
@ -384,7 +336,11 @@ ul.list {
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
flex-wrap: wrap;
|
flex-wrap: wrap;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
|
#titleContainer {
|
||||||
|
flex-grow: 99;
|
||||||
|
}
|
||||||
.search {
|
.search {
|
||||||
|
flex-grow: 1;
|
||||||
&, #searchbar {font-size: 1em;}
|
&, #searchbar {font-size: 1em;}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -440,3 +396,108 @@ ul.list {
|
||||||
@extend .featuredCard;
|
@extend .featuredCard;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#titleContainer {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
align-items: flex-start;
|
||||||
|
align-self: flex-start;
|
||||||
|
|
||||||
|
h1 {
|
||||||
|
font-weight: normal;
|
||||||
|
font-size: 1.6em;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
margin-right: 10px;
|
||||||
|
margin-top: 7px;
|
||||||
|
align-self: flex-start;
|
||||||
|
width: 50px;
|
||||||
|
max-height: 50px;
|
||||||
|
border-radius: 5px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
nav, #links {
|
||||||
|
ul {
|
||||||
|
list-style-type: none;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
header {
|
||||||
|
.titleAndHamburger {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: row;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
align-items: flex-start;
|
||||||
|
align-self: flex-start
|
||||||
|
}
|
||||||
|
nav {
|
||||||
|
font-size: .9em;
|
||||||
|
ul {
|
||||||
|
li {
|
||||||
|
border-right: 1px solid $accent_color;
|
||||||
|
&:last-child {
|
||||||
|
border-right: none;
|
||||||
|
}
|
||||||
|
a {
|
||||||
|
padding: 2px 20px;
|
||||||
|
color: $accent_color;
|
||||||
|
&:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
{{ if .Site.Params.mobileHamburgerNav | default false }}
|
||||||
|
header {
|
||||||
|
#hamburger-menu {
|
||||||
|
@extend .nerdlink;
|
||||||
|
display: none !important;
|
||||||
|
}
|
||||||
|
#main-nav-toggler {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media only screen and (max-width: 520px) {
|
||||||
|
header {
|
||||||
|
#hamburger-menu {
|
||||||
|
display: block !important;
|
||||||
|
font-size: 1.2rem;
|
||||||
|
cursor: pointer;
|
||||||
|
text-align: center;
|
||||||
|
margin: 0;
|
||||||
|
padding: 12px;
|
||||||
|
width: 35px;
|
||||||
|
}
|
||||||
|
nav {
|
||||||
|
ul#main-nav {
|
||||||
|
display: none;
|
||||||
|
flex-direction: column;
|
||||||
|
li {
|
||||||
|
border-right: none !important;
|
||||||
|
display: block;
|
||||||
|
text-align: right;
|
||||||
|
a {
|
||||||
|
padding-left: 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
#main-nav-toggler:checked ~ #main-nav {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
{{ end }}
|
||||||
|
|
|
@ -4,9 +4,19 @@
|
||||||
<div id="titleContainer">
|
<div id="titleContainer">
|
||||||
<img src='{{ .Site.Params.Logo | default "/img/icon.svg" }}' />
|
<img src='{{ .Site.Params.Logo | default "/img/icon.svg" }}' />
|
||||||
<div>
|
<div>
|
||||||
<h1>{{ .Site.Title | default "Ficurinia" }}</h1>
|
<div class="titleAndHamburger">
|
||||||
|
<h1>{{ .Site.Title | default "Ficurinia" }}</h1>
|
||||||
|
{{ if .Site.Params.mobileHamburgerNav | default false }}
|
||||||
|
<label id="hamburger-menu" for="main-nav-toggler">
|
||||||
|

|
||||||
|
</label>
|
||||||
|
{{ end }}
|
||||||
|
</div>
|
||||||
<nav>
|
<nav>
|
||||||
<ul>
|
{{ if .Site.Params.mobileHamburgerNav | default false }}
|
||||||
|
<input type="checkbox" id="main-nav-toggler" />
|
||||||
|
{{ end }}
|
||||||
|
<ul id="main-nav">
|
||||||
<li><a href="/">Home</a></li>
|
<li><a href="/">Home</a></li>
|
||||||
<li><a href="/posts">Posts</a></li>
|
<li><a href="/posts">Posts</a></li>
|
||||||
{{ $pagesDir := .Site.Params.Pages | default (slice "pages") }}
|
{{ $pagesDir := .Site.Params.Pages | default (slice "pages") }}
|
||||||
|
|
Loading…
Reference in New Issue