Try to disable refresh on overscroll in chrome
This commit is contained in:
@@ -1,36 +1,42 @@
|
||||
html{
|
||||
html {
|
||||
height: 100%;
|
||||
}
|
||||
body{
|
||||
background-color: rgb(20,20,20);
|
||||
|
||||
body {
|
||||
background-color: rgb(20, 20, 20);
|
||||
color: grey;
|
||||
font-family: Arial, sans-serif;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
text-align: center;
|
||||
height: 100%;
|
||||
overscroll-behavior: contain;
|
||||
}
|
||||
#divLogo{
|
||||
display:block;
|
||||
|
||||
#divLogo {
|
||||
display: block;
|
||||
height: auto;
|
||||
width: 100%;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
#divLogo img{
|
||||
|
||||
#divLogo img {
|
||||
max-width: 100%;
|
||||
height: auto;
|
||||
}
|
||||
#divInfoDisplay{
|
||||
display:block;
|
||||
height:20px;
|
||||
|
||||
#divInfoDisplay {
|
||||
display: block;
|
||||
height: 20px;
|
||||
width: 100%;
|
||||
line-height: 20px;
|
||||
font-size: 15px;
|
||||
color: rgb(220,220,220);
|
||||
color: rgb(220, 220, 220);
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#divScreen {
|
||||
display: block;
|
||||
position: relative;
|
||||
@@ -39,12 +45,16 @@ body{
|
||||
height: 70%;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
#cnvScreen {
|
||||
display: block;
|
||||
position: absolute;
|
||||
margin: auto;
|
||||
top: 0; left: 0; bottom: 0; right: 0;
|
||||
top: 0;
|
||||
left: 0;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
box-shadow: 0 0 20px rgb(0,0,0);
|
||||
}
|
||||
box-shadow: 0 0 20px rgb(0, 0, 0);
|
||||
}
|
||||
Reference in New Issue
Block a user