60 lines
816 B
CSS
60 lines
816 B
CSS
html {
|
|
height: 100%;
|
|
}
|
|
|
|
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;
|
|
height: auto;
|
|
width: 100%;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
#divLogo img {
|
|
max-width: 100%;
|
|
height: auto;
|
|
}
|
|
|
|
#divInfoDisplay {
|
|
display: block;
|
|
height: 20px;
|
|
width: 100%;
|
|
line-height: 20px;
|
|
font-size: 15px;
|
|
color: rgb(220, 220, 220);
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
#divScreen {
|
|
display: block;
|
|
position: relative;
|
|
width: 100%;
|
|
height: calc(100% - 84px);
|
|
height: 70%;
|
|
overflow: visible;
|
|
}
|
|
|
|
#cnvScreen {
|
|
display: block;
|
|
position: absolute;
|
|
margin: auto;
|
|
top: 0;
|
|
left: 0;
|
|
bottom: 0;
|
|
right: 0;
|
|
max-width: 100%;
|
|
max-height: 100%;
|
|
box-shadow: 0 0 20px rgb(0, 0, 0);
|
|
} |