Changes to be committed:
modified: README.md
new file: beloit/menu.png
new file: clay/menu.png
new file: docker.sh
new file: docker/Dockerfile
new file: docker/entrypoint.sh
new file: index.html
new file: setup.sh
new file: st_marys/menu.png
new file: startup.sh
This commit is contained in:
29
index.html
Normal file
29
index.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>kiosk-menu</title>
|
||||
<style>
|
||||
/* Ensure the media fills the entire screen without scrollbars */
|
||||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
background-color: black; /* Prevents white flash during load */
|
||||
}
|
||||
|
||||
img {
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
display: block;
|
||||
object-fit: cover;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<img src="*LOCATION/menu.png" alt="Menu Image">
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user