Pure CSS lightbox

This commit is contained in:
Luca Beltrame 2021-01-05 17:36:42 +01:00
parent 7074dc5088
commit d9d9fa7f1a
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

23
static/css/lightbox.css Normal file
View file

@ -0,0 +1,23 @@
.lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 999;
width: 100vw;
height: 100vh;
background: rgba(0, 0, 0, 0.8); }
.lightbox img {
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
max-width: 100%;
max-height: 100%; }
.lightbox:target {
outline: none;
display: block; }