64 lines
993 B
CSS
64 lines
993 B
CSS
html, body{
|
|
color: #000000;
|
|
font-family: "Lucida Console", Courier, monospace;
|
|
background-color: #000000;
|
|
width:100%;
|
|
height:100%;
|
|
margin:0px;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#outer {
|
|
display: flex;
|
|
flex-flow: column;
|
|
height: 100%;
|
|
}
|
|
|
|
#mainDisplay {
|
|
flex-grow : 1;
|
|
}
|
|
|
|
webview {
|
|
display: flex;
|
|
height:100%;
|
|
width:100%;
|
|
}
|
|
|
|
::-webkit-scrollbar {
|
|
display: none;
|
|
}
|
|
|
|
.overlay {
|
|
position: fixed;
|
|
display: none;
|
|
width: 100%;
|
|
height: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
z-index: 9;
|
|
}
|
|
|
|
.overlayTalking{
|
|
touch-action:none;
|
|
pointer-events: none;
|
|
background-color:RGBA(0, 255, 0, .1);
|
|
}
|
|
|
|
.copiedBanner {
|
|
height: 60px;
|
|
width: 100%;
|
|
position: absolute;
|
|
z-index: 10;
|
|
background-color: #000000;
|
|
color: #FFFFFF;
|
|
font-size: 30px;
|
|
padding-top: 20px;
|
|
text-align: center;
|
|
pointer-events:none;
|
|
touch-action:none;
|
|
opacity: 0;
|
|
margin-top: 25%;
|
|
} |