2016-05-01 00:33:07 +08:00
|
|
|
.lightbox {
|
2016-05-01 00:01:54 +08:00
|
|
|
position: fixed; /* Stay in place */
|
|
|
|
z-index: 1100; /* Sit on top */
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
2016-05-06 00:19:45 +08:00
|
|
|
width: 0; /* Full width */
|
|
|
|
height: 0; /* Full height */
|
2016-05-01 00:33:07 +08:00
|
|
|
overflow: hidden;
|
|
|
|
display: flex; /* add */
|
|
|
|
justify-content: center; /* add to align horizontal */
|
|
|
|
align-items: center; /* add to align vertical */
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.blackCanvas{
|
|
|
|
display: none;
|
|
|
|
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;
|
|
|
|
}
|
2016-05-13 05:00:38 +08:00
|
|
|
|
|
|
|
.imgContainer img {
|
|
|
|
position: absolute;
|
2016-05-01 03:36:24 +08:00
|
|
|
}
|
|
|
|
.imgContainer{
|
|
|
|
justify-content: center; /* add to align horizontal */
|
|
|
|
align-items: center; /* add to align vertical */
|
2016-05-13 05:00:38 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-arrow {
|
|
|
|
font-size: x-large;
|
|
|
|
width: 50%;
|
|
|
|
height: 100%;
|
|
|
|
position: static;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 15px;
|
|
|
|
color: white;
|
|
|
|
opacity: 0.4;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-arrow span {
|
|
|
|
top: 50%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.navigation-arrow:hover {
|
|
|
|
opacity: 1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#navigation-arrow-container {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
left: 0;
|
|
|
|
position: fixed;;
|
|
|
|
}
|
2016-05-01 03:36:24 +08:00
|
|
|
|
2016-05-13 05:00:38 +08:00
|
|
|
#rightArrow {
|
|
|
|
float: right;
|
|
|
|
text-align: right;
|
2016-05-01 03:36:24 +08:00
|
|
|
}
|