diff options
Diffstat (limited to 'static')
| -rw-r--r-- | static/app.css | 20 |
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; } |
