mirror of
https://git.kittycat.homes/zoe/hugo-battheme.git
synced 2024-08-15 03:25:18 +00:00
make links more visible
This commit is contained in:
parent
c07edf9995
commit
da6e8f7a4e
6 changed files with 26 additions and 9 deletions
|
@ -46,11 +46,9 @@ a.footer-nav-item:hover {
|
||||||
&.light {
|
&.light {
|
||||||
color: $light-bg-alt;
|
color: $light-bg-alt;
|
||||||
background-color: $light-bg;
|
background-color: $light-bg;
|
||||||
border-color: $light-bg;
|
|
||||||
}
|
}
|
||||||
color: $dark-bg-alt;
|
color: $dark-bg-alt;
|
||||||
background-color: $dark-bg;
|
background-color: $dark-bg;
|
||||||
border-color: $dark-bg;
|
|
||||||
transition: $trans-short;
|
transition: $trans-short;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -19,6 +19,12 @@ $small: 12pt;
|
||||||
font-size: $small;
|
font-size: $small;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p,
|
||||||
|
.postdescription,
|
||||||
|
ul {
|
||||||
|
line-height: 2em;
|
||||||
|
}
|
||||||
|
|
||||||
h1{
|
h1{
|
||||||
font-size: $huge;
|
font-size: $huge;
|
||||||
}
|
}
|
||||||
|
|
|
@ -93,6 +93,10 @@ p code{
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.postinfo {
|
||||||
|
text-align: right;
|
||||||
|
}
|
||||||
|
|
||||||
h1,
|
h1,
|
||||||
h2,
|
h2,
|
||||||
h3,
|
h3,
|
||||||
|
@ -106,6 +110,7 @@ h6 {
|
||||||
justify-content: right;
|
justify-content: right;
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
h2,
|
h2,
|
||||||
|
@ -121,6 +126,7 @@ article {
|
||||||
margin-inline: auto;
|
margin-inline: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.titlecontainer,
|
.titlecontainer,
|
||||||
header{
|
header{
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
|
|
@ -4,7 +4,6 @@ $toggle-height: 24pt;
|
||||||
|
|
||||||
* {
|
* {
|
||||||
border-width: 2pt;
|
border-width: 2pt;
|
||||||
transition: ease-in-out;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
input[type="checkbox"] {
|
input[type="checkbox"] {
|
||||||
|
@ -93,3 +92,10 @@ h6 {
|
||||||
border-width: 0.24em;
|
border-width: 0.24em;
|
||||||
padding-left: 2em;
|
padding-left: 2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
p a,
|
||||||
|
.postdescription a,
|
||||||
|
ul a{
|
||||||
|
border-style: solid;
|
||||||
|
padding: 0.12em;
|
||||||
|
}
|
||||||
|
|
|
@ -12,7 +12,8 @@
|
||||||
{{ range .Pages }}
|
{{ range .Pages }}
|
||||||
<div id="postlist">
|
<div id="postlist">
|
||||||
<h2 class="colorswitch posttitle">
|
<h2 class="colorswitch posttitle">
|
||||||
<a class="colorswitch" href="{{.Permalink}}">{{.Title}}</h2><div class="postdescription">{{.Description}}<br>{{.WordCount}} words</a>
|
<a class="colorswitch" href="{{.Permalink}}">{{.Title}}</h2><div class="postdescription">{{.Description}}</a><br>
|
||||||
|
<a class="postinfo" href="{{.Permalink}}">{{.WordCount}} words | read more...</a>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<div>
|
<header>
|
||||||
<h1 class="title">{{ .Site.Title }}</h1>
|
<h1 id="title" class="colorswitch">{{ .Site.Title }}</h1>
|
||||||
</div>
|
</header>
|
||||||
<div>
|
<article id="content" class="colorswitch">
|
||||||
<p>
|
<p>
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</article>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in a new issue