mirror of
https://github.com/xuthus83/pigallery2.git
synced 2024-11-03 21:04:03 +08:00
86 lines
1.7 KiB
CSS
86 lines
1.7 KiB
CSS
.lightbox {
|
|
position: fixed; /* Stay in place */
|
|
z-index: 1100; /* Sit on top */
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%; /* Full width */
|
|
height: 100%; /* Full height */
|
|
overflow: hidden;
|
|
display: flex; /* add */
|
|
justify-content: center; /* add to align horizontal */
|
|
align-items: center; /* add to align vertical */
|
|
cursor: pointer;
|
|
transition: all 0.3s ease-in-out;
|
|
-o-transition: all 0.3s ease-in-out;
|
|
-ms-transition: all 0.3s ease-in-out;
|
|
-webkit-transition: all 0.3s ease-in-out;
|
|
-moz-transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
.sebm-google-map-container {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.blackCanvas {
|
|
position: fixed; /* Stay in place */
|
|
z-index: 1099; /* Sit on top */
|
|
left: 0;
|
|
top: 0;
|
|
width: 100%; /* Full width */
|
|
height: 100%; /* Full height */
|
|
background-color: black;
|
|
transition: all 0.3s ease-in-out;
|
|
-o-transition: all 0.3s ease-in-out;
|
|
-ms-transition: all 0.3s ease-in-out;
|
|
-webkit-transition: all 0.3s ease-in-out;
|
|
-moz-transition: all 0.3s ease-in-out;
|
|
}
|
|
|
|
#controllers-container {
|
|
z-index: 1100;
|
|
right: 0;
|
|
top: 0;
|
|
position: fixed;
|
|
}
|
|
|
|
#controls {
|
|
top: 0;
|
|
height: initial;
|
|
text-align: right;
|
|
width: 100%;
|
|
padding: 5px;
|
|
font-size: large;
|
|
}
|
|
|
|
#controls span {
|
|
margin-left: 6px;
|
|
margin-right: 6px;
|
|
color: black;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.highlight {
|
|
opacity: 0.4;
|
|
transition: opacity .2s ease-out;
|
|
-moz-transition: opacity .2s ease-out;
|
|
-webkit-transition: opacity .2s ease-out;
|
|
-o-transition: opacity .2s ease-out;
|
|
-ms-transition: opacity .2s ease-out;
|
|
}
|
|
|
|
.highlight:hover {
|
|
opacity: 1.0;
|
|
}
|
|
|
|
.preview-loading {
|
|
background-color: #bbbbbb;
|
|
color: #7f7f7f;
|
|
font-size: 50px;
|
|
}
|
|
|
|
.preview-loading span {
|
|
top: calc(50% - 25px);
|
|
left: calc(50% - 25px);
|
|
}
|