Add /samples/ and "black screen of death"

Signed-off-by: mctaylors <cantsendmails@mctaylors.ru>
This commit is contained in:
Macintxsh 2024-05-04 18:12:29 +05:00
parent 17d09485dd
commit 8e786250f6
Signed by: mctaylors
GPG key ID: 7181BEBE676903C1
4 changed files with 53 additions and 0 deletions

30
assets/css/fatal.css Normal file
View file

@ -0,0 +1,30 @@
@import url(fonts.css);
:root {
background-color: black;
color: white;
font-family: Nintendo, sans-serif;
font-weight: bold;
font-size: 20px;
line-height: 32px;
letter-spacing: -0.025em;
}
.content {
margin: 180px 22.5% 0;
}
.description {
margin-top: -12px;
border-bottom: 2px solid white;
}
.info {
white-space: pre-line;
}
.error-code, .info {
font-weight: normal;
font-size: 16px;
line-height: 24px;
}

23
samples/black-screen.html Normal file
View file

@ -0,0 +1,23 @@
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8" />
<title>NXInspired</title>
<link rel="stylesheet" href="/assets/css/fatal.css" />
</head>
<body>
<div class="content">
<p class="error-code">
Error Code: 0000-0000
</p>
<div class="description">
<p>An error has occurred.</p>
<p>Please press the F5 Button to reload the page. If you are unable to reload the page, press the ALT and F4 Buttons simultaneously to close the browser.</p>
<p>If the problem persists, refer to the NXInspired's GitHub repository. github.com/mctaylors/NXInspired</p>
</div>
<p class="info">(X1) XXX00000000000
(X2) 1.0.0
</p>
</div>
</body>
</html>