2019-10-07 06:54:38 +00:00
|
|
|
html, body{
|
2020-07-06 01:00:06 +00:00
|
|
|
color: white;
|
|
|
|
font-family: "Lucida Console", Courier, monospace;
|
|
|
|
background-color: black;
|
2019-10-07 06:54:38 +00:00
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
margin:0px;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
2019-10-20 03:38:47 +00:00
|
|
|
}
|
2019-10-07 06:54:38 +00:00
|
|
|
|
|
|
|
div {
|
|
|
|
width:100%;
|
2019-10-20 03:38:47 +00:00
|
|
|
height:100%;
|
2019-10-07 06:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
webview {
|
2020-07-06 01:00:06 +00:00
|
|
|
height:97%;
|
|
|
|
width:100%;
|
2019-10-07 06:54:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
display: none;
|
2019-10-15 06:21:54 +00:00
|
|
|
}
|
2019-12-22 01:43:29 +00:00
|
|
|
|
2020-07-04 05:05:53 +00:00
|
|
|
.overlay {
|
2019-12-22 01:43:29 +00:00
|
|
|
position: fixed;
|
|
|
|
display: none;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2020-07-04 05:05:53 +00:00
|
|
|
z-index: 9;
|
|
|
|
pointer-events:none;
|
|
|
|
touch-action:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overlayTalking{
|
|
|
|
background-color:RGBA(0, 255, 0, .1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.copiedBanner {
|
|
|
|
height: 60px;
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
|
|
|
background-color: black;
|
|
|
|
color: white;
|
|
|
|
font-size: 30px;
|
|
|
|
padding-top: 20px;
|
|
|
|
text-align: center;
|
|
|
|
pointer-events:none;
|
|
|
|
touch-action:none;
|
|
|
|
opacity: 0;
|
2019-12-22 01:43:29 +00:00
|
|
|
}
|