From 6a367b59cef38fad42c7f39f80579746de267d62 Mon Sep 17 00:00:00 2001 From: mrpaulblack Date: Sun, 21 Nov 2021 12:04:08 +0100 Subject: [simple theme] add animations.less for keyframe animations --- searx/static/themes/simple/src/less/animations.less | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 searx/static/themes/simple/src/less/animations.less (limited to 'searx/static/themes/simple/src/less/animations.less') 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); + } + } +} -- cgit v1.2.3