summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--public/assets/ok.css19
1 files changed, 19 insertions, 0 deletions
diff --git a/public/assets/ok.css b/public/assets/ok.css
index c8b0d40..a7b6eda 100644
--- a/public/assets/ok.css
+++ b/public/assets/ok.css
@@ -352,6 +352,25 @@ nav b {
font-weight: normal;
}
+/*animations*/
+
+.bottom * {
+ transform:translateY(0px);
+ transition:150ms transform, 150ms opacity;
+ transition-timing-function: cubic-bezier(0, 0, 0, 1);
+ opacity:1;
+}
+
+.showing .bottom > * {
+ transform:translateY(20px);
+
+}
+
+.hiding .bottom > * {
+ transform:translateY(-20px);
+ opacity:0;
+
+}
/* Flickity */