aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/redbasic/css
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-12-11 16:50:25 +0100
committerMario Vavti <mario@mariovavti.com>2017-12-11 16:50:25 +0100
commit5b1ef760a06dd892a6decf6a621e710b5ae4e7bd (patch)
treebcb1a055ec081f533f122fa7172782d65edee2d2 /view/theme/redbasic/css
parent4859e6e11a725c345de24749f8600a20ea0a4c2f (diff)
downloadvolse-hubzilla-5b1ef760a06dd892a6decf6a621e710b5ae4e7bd.tar.gz
volse-hubzilla-5b1ef760a06dd892a6decf6a621e710b5ae4e7bd.tar.bz2
volse-hubzilla-5b1ef760a06dd892a6decf6a621e710b5ae4e7bd.zip
notification: slight animation for loading... and do not remove public stream items on click (we can not mark them read)
Diffstat (limited to 'view/theme/redbasic/css')
-rw-r--r--view/theme/redbasic/css/style.css43
1 files changed, 43 insertions, 0 deletions
diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css
index 5728d7948..e46d31ef8 100644
--- a/view/theme/redbasic/css/style.css
+++ b/view/theme/redbasic/css/style.css
@@ -306,6 +306,49 @@ nav {
/* spinner end */
+/* jumping dots */
+.jumping-dots span {
+ position: relative;
+ bottom: 0px;
+ transition-timing-function: ease-in-out;
+ -webkit-animation: jump 1s infinite;
+ animation: jump 1s infinite;
+}
+
+.jumping-dots .dot-1 {
+ -webkit-animation-delay: 200ms;
+ animation-delay: 200ms;
+}
+
+.jumping-dots .dot-2 {
+ -webkit-animation-delay: 400ms;
+ animation-delay: 400ms;
+}
+
+.jumping-dots .dot-3 {
+ -webkit-animation-delay: 600ms;
+ animation-delay: 600ms;
+}
+
+@-webkit-keyframes jump {
+ 0% {
+ bottom: 0px;
+ }
+ 20% {
+ bottom: 3px;
+ }
+ 40% {
+ bottom: 0px;
+ }
+}
+
+@keyframes jump {
+ 0% {bottom: 0px;}
+ 20% {bottom: 3px;}
+ 40% {bottom: 0px;}
+}
+/* jumping dots end */
+
/* footer */
footer {