summaryrefslogtreecommitdiff
path: root/searx/static/themes/simple/src/less/animations.less
diff options
context:
space:
mode:
authormrpaulblack <paul@paulgo.io>2021-11-21 12:04:08 +0100
committerMarkus Heiser <markus.heiser@darmarit.de>2021-11-23 12:35:37 +0100
commit6a367b59cef38fad42c7f39f80579746de267d62 (patch)
treece1ebbaa5dcddc7a95e56666ef6af2a6aa991a97 /searx/static/themes/simple/src/less/animations.less
parente612b81f412934a75b9c187d7f1daf98c0373363 (diff)
[simple theme] add animations.less for keyframe animations
Diffstat (limited to 'searx/static/themes/simple/src/less/animations.less')
-rw-r--r--searx/static/themes/simple/src/less/animations.less15
1 files changed, 15 insertions, 0 deletions
diff --git a/searx/static/themes/simple/src/less/animations.less b/searx/static/themes/simple/src/less/animations.less
new file mode 100644
index 000000000..750b7d255
--- /dev/null
+++ b/searx/static/themes/simple/src/less/animations.less
@@ -0,0 +1,15 @@
+.dialog-modal {
+ animation-name: dialogmodal;
+ animation-duration: 0.13s;
+
+ @keyframes dialogmodal {
+ 0% {
+ opacity: 0;
+ }
+
+ 50% {
+ opacity: 0.5;
+ transform: translate(-50%, -50%) scale(1.05);
+ }
+ }
+}