147 lines
2.2 KiB
SCSS
147 lines
2.2 KiB
SCSS
#lightbox{
|
|
z-index: 1003;
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
display: none;
|
|
overflow-y: auto;
|
|
width: 100%;
|
|
text-align: center;
|
|
padding-top: 80px;
|
|
padding-bottom: 20px;
|
|
|
|
color: $text-dark-grey;
|
|
text-shadow: none;
|
|
font-size: 12px;
|
|
|
|
&.show{
|
|
position: absolute;
|
|
display: block;
|
|
}
|
|
|
|
#lightbox-image{
|
|
box-shadow: 0 10px 20px black;
|
|
top: 0;
|
|
display: block;
|
|
margin-bottom: 120px;
|
|
background: white;
|
|
}
|
|
|
|
#lightbox-content{
|
|
text-align: left;
|
|
display: inline-block;
|
|
}
|
|
|
|
#lightbox-links{
|
|
margin-top: 12px;
|
|
|
|
.attribution{
|
|
float: right;
|
|
}
|
|
|
|
#lightbox-attribution-link{
|
|
color: #999;
|
|
font-weight: bold;
|
|
&:hover{
|
|
color: #eee;
|
|
}
|
|
}
|
|
}
|
|
|
|
#lightbox-close-link,
|
|
#lightbox-attribution-link,
|
|
#lightbox-short-link{
|
|
display: inline-block;
|
|
color: #333;
|
|
text-decoration: none;
|
|
line-height: 14px;
|
|
|
|
&:hover{
|
|
color: #eee;
|
|
}
|
|
}
|
|
|
|
#lightbox-close-link{
|
|
color: $text-dark-grey;
|
|
margin-bottom: 12px;
|
|
}
|
|
}
|
|
|
|
#lightbox-backdrop{
|
|
box-shadow:inset 0 0 50px #000000;
|
|
|
|
z-index: 1002;
|
|
position: fixed;
|
|
height: 100%;
|
|
width: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: rgba(0,0,0,0.9);
|
|
display: none;
|
|
}
|
|
|
|
#lightbox-navigation{
|
|
z-index: 1004;
|
|
position: fixed;
|
|
width: 100%;
|
|
left: 0;
|
|
bottom: 0;
|
|
text-align: center;
|
|
background-color: rgba(0,0,0,0.4);
|
|
padding: 5px 0;
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#lightbox-scrollleft, #lightbox-scrollright{
|
|
z-index: 1005;
|
|
color: #fff;
|
|
background-color: #0f0f0f;
|
|
display: inline-block;
|
|
height: 70px;
|
|
width: 30px;
|
|
position: fixed;
|
|
cursor: pointer;
|
|
font-size: 3em;
|
|
}
|
|
|
|
#lightbox-scrollleft{
|
|
left: 0px;
|
|
}
|
|
|
|
#lightbox-scrollright{
|
|
right: 0px;
|
|
}
|
|
|
|
#lightbox-imageset{
|
|
display: inline-block;
|
|
vertical-align: bottom;
|
|
padding-left: 50px;
|
|
padding-right: 50px;
|
|
|
|
img{
|
|
transition: opacity 0.2s;
|
|
opacity: 0.2;
|
|
height: 70px;
|
|
width: 70px;
|
|
margin-right: 5px;
|
|
cursor: pointer;
|
|
background-color: white;
|
|
|
|
&:last-child{
|
|
margin-right: 0;
|
|
}
|
|
|
|
&.selected{
|
|
opacity: 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
body.lightboxed{
|
|
overflow: hidden;
|
|
#lightbox-backdrop{
|
|
display: block;
|
|
}
|
|
}
|
|
|