diff options
| author | julian laplace <julescarbon@gmail.com> | 2022-10-26 19:29:14 +0200 |
|---|---|---|
| committer | julian laplace <julescarbon@gmail.com> | 2022-10-26 19:29:14 +0200 |
| commit | 1e2830de34e03371f7deafb40b2542b75ce2ed4b (patch) | |
| tree | 63ca92863b3fbff7a34a99b9263226a7b46a0ad2 /public/assets/css | |
| parent | 5a697b0a4fb2578a98a1b8e064ebe62dad9616e2 (diff) | |
trim posts
Diffstat (limited to 'public/assets/css')
| -rw-r--r-- | public/assets/css/hootstream.css | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/public/assets/css/hootstream.css b/public/assets/css/hootstream.css index e0d9e45..19141ba 100644 --- a/public/assets/css/hootstream.css +++ b/public/assets/css/hootstream.css @@ -272,6 +272,35 @@ caret-color: #888; } +/** Read more */ +#hootevents .readMore { + opacity: 0.7; + transition: opacity 0.1s, color 0.5s; +} +#hootevents a { + transition: opacity 0.1s, color 0.5s; +} +#hootevents .readMore:hover, +#hootevents a:hover { + opacity: 0.9; + animation: readMore 3600s infinite; + color: #38f; +} +@keyframes readMore { + 0% { + color: #38f; + } + 60% { + color: #8de; + } + 80% { + color: #def; + } + 100% { + color: #38f; + } +} + /** MEDIA QUERY: DARK MODE */ @media (prefers-color-scheme: dark) { .search_form input[type="text"]:focus { |
