commit 2a08a59a089f0d51b1b4d39554ac83e519d3cc23
parent db92fe6979904c843e37555a9035d3342e3e6141
Author: ugrnm <ultrageranium@bleu255.com>
Date: Sun, 15 Sep 2024 00:50:02 +0200
no signal screen for network errors
Diffstat:
3 files changed, 10 insertions(+), 0 deletions(-)
diff --git a/www/index.html b/www/index.html
@@ -8,6 +8,7 @@
</head>
<body>
<img id="television" src="/tv.jpg" alt="television">
+ <img id="nosignal" src="/nosignal.jpg" alt="no signal">
</body>
</html>
diff --git a/www/nosignal.jpg b/www/nosignal.jpg
Binary files differ.
diff --git a/www/style.css b/www/style.css
@@ -7,6 +7,7 @@ html {
background-color: #000;
background-image: url("/bg.png");
background-position: center;
+ z-index: 0;
}
img {
@@ -17,3 +18,11 @@ img {
max-height: 100%;
}
+img#nosignal {
+ z-index: 5;
+}
+
+img#television {
+ z-index: 10;
+}
+