summaryrefslogtreecommitdiff
path: root/style/plugins/overlay.scss
diff options
context:
space:
mode:
Diffstat (limited to 'style/plugins/overlay.scss')
-rw-r--r--style/plugins/overlay.scss17
1 files changed, 17 insertions, 0 deletions
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; }
+}