From 382401d527314b270e1c67b4f88cd3bfbca81d46 Mon Sep 17 00:00:00 2001 From: Victor Häggqvist Date: Thu, 14 Jan 2016 22:54:43 +0100 Subject: create plugin architecture --- style/plugins/overlay.scss | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 style/plugins/overlay.scss (limited to 'style/plugins/overlay.scss') diff --git a/style/plugins/overlay.scss b/style/plugins/overlay.scss new file mode 100644 index 0000000..edbc05a --- /dev/null +++ b/style/plugins/overlay.scss @@ -0,0 +1,17 @@ + +#imagelightbox-overlay { + background: #fff; + background: rgba(255, 255, 255, .9); + bottom: 0; + left: 0; + position: fixed; + right: 0; + top: 0; + z-index: 9998; + animation: fade-in .25s linear; +} + +@keyframes fade-in { + 0% { opacity: 0; } + 100% { opacity: 1; } +} -- cgit v1.2.3