From 7307889639b68064e642ae65bf98d9856c10922b Mon Sep 17 00:00:00 2001 From: Victor Häggqvist Date: Sat, 16 Jan 2016 14:14:59 +0100 Subject: finalize convertion of existing plugins --- style/plugins/caption.scss | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 style/plugins/caption.scss (limited to 'style/plugins/caption.scss') diff --git a/style/plugins/caption.scss b/style/plugins/caption.scss new file mode 100644 index 0000000..fec2093 --- /dev/null +++ b/style/plugins/caption.scss @@ -0,0 +1,22 @@ +#imagelightbox-caption { + background-color: #666; + bottom: 0; + color: #fff; + left: 0; + padding: 10px; + position: fixed; + right: 0; + text-align: center; + z-index: 10001; + animation: fade-in .25s linear; +} + +@keyframes fade-in { + 0% { + opacity: 0; + } + 100% { + opacity: 1; + } +} + -- cgit v1.2.3