mirror of
https://github.com/alex-shpak/hugo-book.git
synced 2024-11-25 04:43:04 +00:00
Fix menu paddings, add additional space for big screens
This commit is contained in:
parent
5b7db23aaa
commit
5b4dec6db9
@ -5,8 +5,9 @@ $block-border-radius: 0.15rem;
|
||||
.markdown {
|
||||
line-height: 1.7;
|
||||
|
||||
:first-child {
|
||||
> :first-child {
|
||||
margin-top: 0;
|
||||
line-height: 1em;
|
||||
}
|
||||
|
||||
h1, h2, h3, h4, h5 {
|
||||
|
@ -36,14 +36,20 @@ a {
|
||||
}
|
||||
}
|
||||
|
||||
img {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
aside {
|
||||
ul {
|
||||
margin: 0;
|
||||
padding-left: $padding-16;
|
||||
list-style: none;
|
||||
line-height: 2em;
|
||||
line-height: 1.5em;
|
||||
|
||||
li {
|
||||
margin: .5em 0;
|
||||
|
||||
a { display: block; }
|
||||
a:hover { opacity: .5; }
|
||||
|
||||
@ -66,6 +72,15 @@ aside.fixed nav {
|
||||
overflow: hidden auto;
|
||||
}
|
||||
|
||||
header {
|
||||
display: flex;
|
||||
align-items:center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: $padding-16;
|
||||
|
||||
display: none;
|
||||
}
|
||||
|
||||
main {
|
||||
max-width: $content-max-width;
|
||||
margin: 0 auto;
|
||||
@ -96,22 +111,13 @@ main {
|
||||
a { color: $nav-link-color; }
|
||||
a.active { color: $color-link; }
|
||||
|
||||
.flat {
|
||||
.flat-section {
|
||||
margin-bottom: $padding-16;
|
||||
> a { font-weight: 700; }
|
||||
> ul { padding-left: 0; }
|
||||
}
|
||||
}
|
||||
|
||||
header {
|
||||
display: flex;
|
||||
align-items:center;
|
||||
justify-content: space-between;
|
||||
margin-bottom: $padding-16;
|
||||
|
||||
display: none;
|
||||
}
|
||||
|
||||
.content {
|
||||
flex: 1 0;
|
||||
width: 0;
|
||||
@ -167,3 +173,16 @@ $toc-hide-point: $menu-hide-point + $nav-menu-width;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Extra space for big screens
|
||||
@media screen and (min-width: $toc-hide-point) {
|
||||
main {
|
||||
.content {
|
||||
padding: $padding-16 * 2 $padding-16;
|
||||
}
|
||||
|
||||
.menu nav, .toc nav {
|
||||
padding: $padding-16 * 2;
|
||||
}
|
||||
}
|
||||
}
|
1
exampleSite/.gitignore
vendored
Normal file
1
exampleSite/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
resources/
|
@ -1,6 +1,8 @@
|
||||
# hugo server --themesDir ...
|
||||
|
||||
baseURL: http://example.org
|
||||
title: Rx Jersey
|
||||
theme: book
|
||||
theme: hugo-book
|
||||
|
||||
# Book configuration
|
||||
disablePathToLower: true
|
||||
|
@ -8,7 +8,7 @@
|
||||
{{ define "book-section" }} <!-- Single section of menu (recursive) -->
|
||||
<ul>
|
||||
{{ range .Section.Sections }}
|
||||
<li {{- if .Params.bookflatsection}} class="flat" {{ end }}>
|
||||
<li {{- if .Params.bookflatsection}} class="flat-section" {{ end }}>
|
||||
{{- if .Content -}}
|
||||
{{ template "book-page-link" (dict "Page" . "CurrentPage" $.CurrentPage) }}
|
||||
{{- else -}}
|
||||
|
Loading…
Reference in New Issue
Block a user