27 lines
No EOL
431 B
CSS
27 lines
No EOL
431 B
CSS
.screen {
|
|
user-select: none;
|
|
overflow: hidden;
|
|
position: absolute;
|
|
transform-origin: left top;
|
|
top: 50%;
|
|
left: 50%;
|
|
box-shadow: 0px 0px 15px 0px rgba(0,0,0,0.1);
|
|
}
|
|
.iframe {
|
|
position: absolute;
|
|
border: none;
|
|
background: white;
|
|
}
|
|
.overlay {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 10;
|
|
}
|
|
|
|
.highlightoff {
|
|
opacity: 0;
|
|
transition: all 0.25s cubic-bezier(0, 0, 0.4, 1.0);
|
|
} |