diff options
Diffstat (limited to 'static/.popup.scss')
-rw-r--r-- | static/.popup.scss | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/static/.popup.scss b/static/.popup.scss new file mode 100644 index 0000000..4bc4650 --- /dev/null +++ b/static/.popup.scss @@ -0,0 +1,23 @@ +.popup { + animation-name: popup; + animation-duration: 6s; + animation-iteration-count: 1; + position: fixed; + bottom: 10px; + text-align: center; + animation-fill-mode: forwards; +} + +@keyframes popup { + 0% { + opacity: 100%; + } + + 33% { + opacity: 100%; + } + + 100% { + opacity: 0; + } +}
\ No newline at end of file |