Add self publishing scripts.

This commit is contained in:
2019-04-20 15:32:41 +02:00
parent 3990cd4b18
commit 7cf7582560
38 changed files with 285 additions and 1 deletions

50
Web/style.css Normal file
View File

@@ -0,0 +1,50 @@
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%;
}
#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);
}