Compare commits

...

2 commits

Author SHA1 Message Date
01aa47bc95 remove other websites from header
All checks were successful
Build / Deploy (push) Successful in 1m58s
2025-02-11 21:28:49 +01:00
603e487857 tweak list styling 2025-02-11 21:28:01 +01:00
2 changed files with 5 additions and 12 deletions

View file

@ -47,18 +47,13 @@
<div class="nav-links">
<div class="d-inline-block">
{{navItem("Home", "/")}}
{{navItem("Blog", "/blog")}}
{{navItem("Blog", "/blog", false)}}
</div>
<div class="d-inline-block">
<span> | </span>
{{navItem("Mastodon", "https://dook.business/@RikSolo")}}
{{navItem("Instagram", "https://instagram.com/RikBerkelder", false)}}
</div>
<div class="d-inline-block">
<span> | </span>
{{navItem("RBLicht", "https://rblicht.nl", true, '_blank')}}
{{navItem("RBSolutions", "https://rbsolutions.cc", false, '_blank')}}
</div>
</div>
</div>

View file

@ -62,14 +62,16 @@ body {
margin-left: 0rem;
margin-top: 0rem;
margin-bottom: 1rem;
padding-left: 0.5rem;
padding-left: 1.5rem;
margin-right: 2rem;
list-style-position: outside;
}
ol p,
ul p {
margin: 0.3rem 0rem;
display: inline;
}
ol {
@ -77,11 +79,7 @@ body {
}
ul {
list-style-type: none;
li::before {
content: "- "
}
list-style-type: "- ";
}
}