session-desktop/stylesheets/_lightbox.scss
lilia c1b8ff9e54 Fix _lightbox.scss
// FREEBIE
2016-07-14 10:49:45 -07:00

59 lines
964 B
SCSS

.lightbox {
&.modal {
padding: 30px;
text-align: center;
background-color: rgba(0,0,0,0.8);
.content {
margin: 0;
padding: 0 50px;
max-width: 100%;
height: 100%;
box-shadow: none;
background: transparent;
img {
display: block;
margin: auto;
max-width: 100%;
max-height: 100%;
}
}
.controls {
position: absolute;
top: 0;
right: 0;
width: 50px;
}
a {
background: transparent;
width: 50px;
height: 50px;
margin-bottom: 10px;
display: inline-block;
cursor: pointer;
border-radius: 50%;
padding: 3px;
&:before {
content: '';
display: block;
width: 100%;
height: 100%;
}
&:hover {
background: $grey;
}
}
.save {
&:before {
@include color-svg('/images/save.svg', white);
}
}
}
}