- Added various icon images (128x128, 16x16, 32x32, 48x48, 64x64, 76x76 PNGs). - Introduced logo images in JPG and PNG formats, along with an SVG version. - Created device XML file for UPnP compatibility. - Implemented custom 404 and 405 error pages with a Commodore 64 theme. - Added an SVG graphic for server error representation. - Developed CSS styles for error pages to enhance visual appeal. - Included a favicon cursor icon. - Added a font file for "Microgramma D Extended Bold". - Created a WebSocket test page with interactive command execution.
37 lines
667 B
CSS
37 lines
667 B
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #6C5EB5; /* dark blue */
|
|
font-family: 'Press Start 2P', cursive;
|
|
color: #6C5EB5; /* light blue */
|
|
}
|
|
|
|
.boot-screen {
|
|
text-align: center;
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%, -50%);
|
|
border: 5px solid #6C5EB5; /* light blue */
|
|
padding: 20px;
|
|
background-color: #352879; /* black */
|
|
width: 80%;
|
|
height: 80%;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 24px;
|
|
letter-spacing: 4px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
p {
|
|
font-size: 24px;
|
|
text-align: left;
|
|
}
|
|
|
|
.help-actions {
|
|
font-size: 24px;
|
|
text-align: center;
|
|
color: #FFFFFF; /* light blue */
|
|
} |