Initial commit

This commit is contained in:
2021-01-27 20:23:49 +01:00
commit 66d10fdcda
25 changed files with 1357 additions and 0 deletions

27
public/static/css/kiosk.css Executable file
View File

@@ -0,0 +1,27 @@
body {
background-color: #000;
color: #fafafa;
font-family: Arial, Helvetica, sans-serif;
}
.mySlides {
width: 100%;
height: 100%;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
.img {
margin: auto;
position: absolute;
object-fit: contain;
width:100%;
height:100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
/* Disable scrolling */
html, body {margin: 0; height: 100%; overflow: hidden}

52
public/static/css/style.css Executable file
View File

@@ -0,0 +1,52 @@
html {
background-color: #fff;
background-image: url(../img/wallpaper.jpg);
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
display: block;
}
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 16px;
color: #222;
background: #fff;
max-width: 600px;
margin: 0 auto;
padding: 12px;
padding-top: 7px;
box-shadow: 0 0 4px #222;
}
@media screen and (max-width: 622px) {
body {
padding: 7px;
box-shadow: 0 0 0;
}
html {
background-image: none;
}
}
a {
color: #208fe3;
text-decoration: none;
}
a:hover {
color: #689dff;
}
h1, h2, h3, h4, h5, h6 {
line-height: 1.2;
}
li {
line-height: 1.5;
}
hr {
border: 0;
height: 3px;
background-image: linear-gradient(to right, #fff, #208fe3, #fff);
}
.animate-top{
position:relative;animation:animatetop 0.4s}@keyframes animatetop{from{top:-300px;opacity:0} to{top:0;opacity:1}
}