diff options
Diffstat (limited to 'client/simple/src/less/animations.less')
| -rw-r--r-- | client/simple/src/less/animations.less | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/client/simple/src/less/animations.less b/client/simple/src/less/animations.less new file mode 100644 index 000000000..75c98308f --- /dev/null +++ b/client/simple/src/less/animations.less @@ -0,0 +1,19 @@ +.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); + } + } +} + +input.checkbox-onoff[type="checkbox"]::before { + transition: left 0.25s; +} |