De-overload the .item-title class

This commit is contained in:
Tim Van Baak 2025-02-06 07:49:27 -08:00
parent d4c93265a2
commit fd7d9b00b3
3 changed files with 7 additions and 4 deletions

View File

@ -2,7 +2,7 @@
{{ define "content" -}}
<article class="center">
<span class="item-title">
<span class="feed-controls">
<a href="/">Home</a>
[<a href="?inactive=0">Active</a> | <a href="?inactive=1">All</a>]
</span>
@ -23,7 +23,7 @@
{{ else }}
<article class="center">
<span class="item-title">Feed is empty</span>
<span class="feed-controls">Feed is empty</span>
</article>
{{ end }}
{{/* end if .Items */}}

View File

@ -3,7 +3,7 @@
{{ define "content" -}}
<article>
<details open>
<summary><span class="item-title">Channels</span></summary>
<summary><span class="feed-controls">Channels</span></summary>
{{ if .Channels }}
{{ range .Channels }}
<p><a href="/channel/{{ .Name }}">
@ -22,7 +22,7 @@
<article>
<details>
<summary><span class="item-title">Sources</span></summary>
<summary><span class="feed-controls">Sources</span></summary>
{{ if .Sources }}
<table class="intake-sources">
{{ range .Sources }}

View File

@ -10,6 +10,9 @@ article {
word-break: break-word;
display: flow-root;
}
.feed-controls {
font-size: 1.2em;
}
.item-title {
font-size: 1.4em;
}