summaryrefslogtreecommitdiff
path: root/public/assets/css/hootstream.css
diff options
context:
space:
mode:
Diffstat (limited to 'public/assets/css/hootstream.css')
-rw-r--r--public/assets/css/hootstream.css29
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 {