changed appearance of .website-nav
This commit is contained in:
parent
969c338499
commit
c512e8f8e2
2 changed files with 21 additions and 9 deletions
|
@ -20,14 +20,24 @@ nav {
|
|||
ul {
|
||||
display: flex;
|
||||
padding: 0;
|
||||
}
|
||||
li {
|
||||
list-style-type: none;
|
||||
padding: 10px 0 10px 30px;
|
||||
}
|
||||
a {
|
||||
color: rgb(245, 245, 245);
|
||||
text-decoration: none;
|
||||
margin: 0;
|
||||
li {
|
||||
list-style-type: none;
|
||||
a {
|
||||
color: rgb(245, 245, 245);
|
||||
text-decoration: none;
|
||||
padding: 20px 30px;
|
||||
display: block;
|
||||
transition: background .2s;
|
||||
}
|
||||
a:hover {
|
||||
background: rgb(50, 50, 75);
|
||||
}
|
||||
.seperator {
|
||||
padding: 20px 10px;
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -14,7 +14,9 @@
|
|||
</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
<li>|</li>
|
||||
<li>
|
||||
<span class="seperator">·</span>
|
||||
</li>
|
||||
{{ range .Site.Menus.links }}
|
||||
<li>
|
||||
<a href="{{ .URL }}">
|
||||
|
|
Loading…
Reference in a new issue