aboutsummaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorSamuel Johnson <[email protected]>2025-12-11 02:51:42 -0500
committerSamuel Johnson <[email protected]>2025-12-11 02:51:42 -0500
commitd4ad397b85994d4d6fdfbf75ce1bc65fdb2f9b33 (patch)
tree7dfe7586ed1b7c72432d98a467a82f785c2e557f /static
parent6785f856b81b6c0de8c8828761779732b30191af (diff)
Add RSS feed constructor
Diffstat (limited to 'static')
-rw-r--r--static/app.css20
1 files changed, 16 insertions, 4 deletions
diff --git a/static/app.css b/static/app.css
index c340259..2ed671f 100644
--- a/static/app.css
+++ b/static/app.css
@@ -22,6 +22,10 @@ pre {
word-wrap: inherit;
}
+.rss {
+ margin-left: 1.5em;
+}
+
.lead {
display: flex;
flex-direction: row;
@@ -71,7 +75,7 @@ a.icon {
color: #0fcff0;
}
-a:not(.icon)::after {
+a:not(.icon):not(.rss)::after {
content: "";
background: white;
height: 1px;
@@ -80,17 +84,17 @@ a:not(.icon)::after {
transition: .16s all 0.025s;
}
-a:not(.icon)::after {
+a:not(.icon):not(.rss)::after {
left: 100%;
right: 0;
}
-a:hover ~ a:not(.icon)::after {
+a:hover ~ a:not(.icon):not(.rss)::after {
left: 0;
right: 100%;
}
-a:not(.icon):hover::after {
+a:not(.icon):not(.rss):hover::after {
left: 0;
right: 0;
}
@@ -113,6 +117,10 @@ a:not(.icon):hover::after {
width: 50%;
}
+.rss img {
+ width: 1.5rem;
+}
+
input {
background-color: rgba(255, 255, 255, 0.8);
}
@@ -351,6 +359,10 @@ iframe {
width: 100%;
}
+ .rss img {
+ width: 1.5rem;
+ }
+
.inner_pane {
padding-bottom: 4em;
}