2019-10-06 23:54:38 -07:00
|
|
|
html, body{
|
2020-07-08 20:23:17 -07:00
|
|
|
color: #000000;
|
2020-07-05 18:00:06 -07:00
|
|
|
font-family: "Lucida Console", Courier, monospace;
|
2020-08-12 18:28:00 -07:00
|
|
|
background-color: #000000;
|
2019-10-06 23:54:38 -07:00
|
|
|
width:100%;
|
|
|
|
height:100%;
|
|
|
|
margin:0px;
|
|
|
|
padding: 0;
|
|
|
|
overflow: hidden;
|
2019-10-19 20:38:47 -07:00
|
|
|
}
|
2019-10-06 23:54:38 -07:00
|
|
|
|
2020-07-08 20:23:17 -07:00
|
|
|
#outer {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
#mainDisplay {
|
|
|
|
flex-grow : 1;
|
|
|
|
}
|
2019-10-06 23:54:38 -07:00
|
|
|
|
|
|
|
webview {
|
2020-07-08 20:23:17 -07:00
|
|
|
display: flex;
|
|
|
|
height:100%;
|
2020-07-05 18:00:06 -07:00
|
|
|
width:100%;
|
2019-10-06 23:54:38 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
display: none;
|
2019-10-14 23:21:54 -07:00
|
|
|
}
|
2019-12-21 17:43:29 -08:00
|
|
|
|
2020-07-03 22:05:53 -07:00
|
|
|
.overlay {
|
2019-12-21 17:43:29 -08:00
|
|
|
position: fixed;
|
|
|
|
display: none;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
2020-07-03 22:05:53 -07:00
|
|
|
z-index: 9;
|
|
|
|
}
|
|
|
|
|
|
|
|
.overlayTalking{
|
2020-07-08 20:23:17 -07:00
|
|
|
touch-action:none;
|
|
|
|
pointer-events: none;
|
2020-07-03 22:05:53 -07:00
|
|
|
background-color:RGBA(0, 255, 0, .1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.copiedBanner {
|
|
|
|
height: 60px;
|
|
|
|
width: 100%;
|
|
|
|
position: absolute;
|
|
|
|
z-index: 10;
|
2020-07-08 20:23:17 -07:00
|
|
|
background-color: #000000;
|
|
|
|
color: #FFFFFF;
|
2020-07-03 22:05:53 -07:00
|
|
|
font-size: 30px;
|
|
|
|
padding-top: 20px;
|
|
|
|
text-align: center;
|
|
|
|
pointer-events:none;
|
|
|
|
touch-action:none;
|
|
|
|
opacity: 0;
|
2020-07-08 20:23:17 -07:00
|
|
|
margin-top: 25%;
|
2019-12-21 17:43:29 -08:00
|
|
|
}
|