Link back to homepage in single page view

This commit is contained in:
Gabriel Simmer 2023-07-22 09:04:14 +01:00
parent b840457839
commit 0f807a7aac
Signed by: arch
GPG key ID: C81B106D46C5B875
2 changed files with 20 additions and 10 deletions

View file

@ -2,7 +2,7 @@
<div class="container">
<div class="row">
<div class="twelve columns">
<h1>{{ default .Site.Title }}</h1>
<h1><a href="/">{{ default .Site.Title }}</a></h1>
</div>
</div>
<article>

View file

@ -43,6 +43,25 @@ article, .article-list {
padding: 1ch;
}
h1 > a, h1 > a:visited {
text-decoration: none;
color: var(--text-colour);
}
h1:hover > a {
color: #0FA0CE;
}
/* Links
*/
a {
color: #1EAEDB;
}
a:hover {
color: #0FA0CE;
}
/* Base Styles
*/
/* NOTE
@ -102,12 +121,3 @@ h6 { font-size: 1.5rem; line-height: 1.6; }
h5 { font-size: 2.4rem; }
h6 { font-size: 1.5rem; }
}
/* Links
*/
a {
color: #1EAEDB;
}
a:hover {
color: #0FA0CE;
}