Move files to the new location requested by Ananke
Some checks failed
continuous-integration/drone/push Build is failing
Some checks failed
continuous-integration/drone/push Build is failing
This commit is contained in:
parent
cf5d4f6d7f
commit
f174cc9be1
5 changed files with 560 additions and 0 deletions
28
assets/ananke/css/lightbox.css
Normal file
28
assets/ananke/css/lightbox.css
Normal file
|
@ -0,0 +1,28 @@
|
|||
.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%;
|
||||
object-fit: contain;
|
||||
}
|
||||
|
||||
.lightbox:target {
|
||||
outline: none;
|
||||
display: block; }
|
Loading…
Add table
Add a link
Reference in a new issue