mirror of
https://github.com/trwnh/hugo-theme-paradox.git
synced 2024-11-13 04:32:37 +00:00
more fixes
This commit is contained in:
parent
e004f35404
commit
6f92a989cc
|
@ -37,6 +37,9 @@
|
|||
li {
|
||||
line-height: 1.5;
|
||||
}
|
||||
.sub-menu {
|
||||
margin-top: 0.5rem;
|
||||
}
|
||||
li::marker {
|
||||
content: '→ ';
|
||||
}
|
||||
|
|
|
@ -1,16 +0,0 @@
|
|||
.header-nav {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
.menu {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
gap: 1em;
|
||||
a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5em;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -2,17 +2,33 @@
|
|||
display: flex;
|
||||
align-items: center;
|
||||
padding: 1em 0;
|
||||
}
|
||||
.site-footer hr {display: none;}
|
||||
.site-footer .container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-flow: row wrap;
|
||||
gap: 1em;
|
||||
}
|
||||
|
||||
.footer-nav .menu {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
gap: 1em;
|
||||
}
|
||||
hr {display: none;}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
gap: 1em;
|
||||
}
|
||||
|
||||
.footer-nav .menu {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
gap: 1em;
|
||||
}
|
||||
|
||||
.social-nav {
|
||||
.menu {
|
||||
display: flex;
|
||||
gap: 1rem;
|
||||
a:after {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
a[href='#top'] {
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -31,4 +31,21 @@
|
|||
flex-flow: row wrap;
|
||||
justify-content: space-between;
|
||||
gap: 1em;
|
||||
}
|
||||
|
||||
.header-nav {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
.menu {
|
||||
display: flex;
|
||||
flex-flow: row wrap;
|
||||
gap: 1em;
|
||||
a {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5em;
|
||||
}
|
||||
}
|
||||
}
|
|
@ -37,6 +37,8 @@
|
|||
padding: 0.5rem 1rem;
|
||||
margin-right: 0.5rem;
|
||||
flex-shrink: 1;
|
||||
height: 2rem;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
#search-submit {
|
||||
|
@ -45,4 +47,5 @@
|
|||
background: var(--primary-accent);
|
||||
color: var(--primary-accent-text);
|
||||
border-radius: 4px;
|
||||
height: 2rem;
|
||||
}
|
|
@ -4,7 +4,6 @@
|
|||
@import "common/content";
|
||||
|
||||
@import "components/site-header";
|
||||
@import "components/nav-header";
|
||||
@import "components/nav-docs";
|
||||
@import "components/site-footer";
|
||||
|
||||
|
|
13
layouts/partials/nav-social.html
Normal file
13
layouts/partials/nav-social.html
Normal file
|
@ -0,0 +1,13 @@
|
|||
<nav class="social-nav">
|
||||
<ul class="menu">
|
||||
{{ $currentPage := . }}
|
||||
{{ range .Site.Menus.social }}
|
||||
<li
|
||||
class='{{ .Identifier }}'>
|
||||
<a href="{{ .URL }}">
|
||||
{{ .Pre }}
|
||||
</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</nav>
|
|
@ -2,6 +2,7 @@
|
|||
<hr>
|
||||
<div class="container">
|
||||
{{ partial "nav-footer.html" . }}
|
||||
{{ partial "nav-social.html" . }}
|
||||
<a href="#top">back to top</a>
|
||||
</div>
|
||||
</footer>
|
||||
|
|
Loading…
Reference in a new issue