29 lines
394 B
CSS
29 lines
394 B
CSS
|
/* Panaorama viewer custom */
|
||
|
@media screen {
|
||
|
.archive_org {
|
||
|
/* width: 600px; */
|
||
|
/* height: 400px; */
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.zoom {
|
||
|
display:inline-block;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
/* magnifying glass icon */
|
||
|
.zoom:after {
|
||
|
content:'';
|
||
|
display:block;
|
||
|
width:33px;
|
||
|
height:33px;
|
||
|
position:absolute;
|
||
|
top:0;
|
||
|
right:0;
|
||
|
background:url(icon.png);
|
||
|
}
|
||
|
|
||
|
.zoom img {
|
||
|
display: block;
|
||
|
}
|