session-desktop/stylesheets/_lightbox.scss

60 lines
966 B
SCSS
Raw Normal View History

2016-07-13 01:44:45 +02:00
.lightbox {
&.modal {
padding: 30px;
text-align: center;
background-color: rgba(0,0,0,0.8);
.content {
margin: 0;
padding: 0 60px;
2016-07-13 01:44:45 +02:00
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 {
2017-03-08 01:54:46 +01:00
@include color-svg('../images/save.svg', white);
2016-07-13 01:44:45 +02:00
}
}
}
}