Skip to content
This repository has been archived by the owner on Aug 14, 2024. It is now read-only.

Design BSOD for windows 11 #873

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
75 changes: 37 additions & 38 deletions public/404.html
Original file line number Diff line number Diff line change
@@ -1,43 +1,42 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>404 - Page</title>
<link rel="stylesheet" href="https://win11.blueedge.me/style.css" />
</head>
<body>
<!-- partial:index.partial.html -->
<div id="page">
<div id="container">
<h1>:(</h1>
<h2>
Your PC ran into a problem and needs to restart. We're just collecting
some error info, and then we'll restart for you.
</h2>
<h2><span id="percentage">0</span>% complete</h2>
<div id="details">
<div id="qr">
<div id="image">
<img src="https://win11.blueedge.me/img/qr.png" alt="QR Code" />
</div>
</div>
<div id="stopcode">
<h4>
For more information about this issue and possible fixes, visit
<br />
<a href="https://github.com/blueedgetechno/win11React/issues"
>https://github.com/blueedgetechno/win11React/issues</a
>
</h4>
<h5>
If you call a support person, give them this info: <br />Stop
Code: 404_PAGE_NOT_FOUND
</h5>
</div>

<head>
<meta charset="UTF-8" />
<title>404 - Page</title>
<link rel="stylesheet" href="./style.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:[email protected]&display=swap" rel="stylesheet">
</head>

<body>
<!-- partial:index.partial.html -->
<div id="page">
<div id="container">
<h1>:(</h1>
<h2>
Your PC ran into a problem and needs to restart. We're just collecting
some error info, and then we'll restart for you.
</h2>
<h2><span id="percentage">0</span>% complete</h2>
<div id="details">
<div id="stopcode">
<h4>
For more information about this issue and possible fixes, visit our website
<a
href="https://github.com/blueedgetechno/win11React/issues">https://github.com/blueedgetechno/win11React/issues</a>
</h4>
<h5>
If you call a support person, give them this info: <br />Stop
Code: 404_PAGE_NOT_FOUND
</h5>
</div>
</div>
</div>
<!-- partial -->
<script src="./script.js"></script>
</body>
</html>
</div>
<!-- partial -->
<script src="./script.js"></script>
</body>

</html>
Binary file modified public/img/qr.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 14 additions & 7 deletions public/style.css
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
body {
font-family: Segoe UI;
background: #3973aa;
font-family: Segoe UI, sans-serif;
background: #0079d9;
color: #fefeff;
height: 100vh;
margin: 0;
user-select: none;
}

#page {
Expand All @@ -25,20 +26,24 @@ h2,
h3,
h4,
h5 {
font-weight: normal;
font-family: "Manrope", sans-serif;
font-optical-sizing: auto;
font-weight: 400;
font-style: normal;
padding: 0;
margin: 25px 0;
margin-top: 0;
font-weight: 300;
}

h1 {
font-size: 6rem;
font-size: 8rem;
font-weight: 300;
margin-bottom: 10px;
}

h2 {
font-size: 21px;
font-size: 29px;
line-height: 1.5em;
}

h4 {
Expand Down Expand Up @@ -88,4 +93,6 @@ h5 {

a {
color: #e1f0ff;
}
text-decoration: none;
border-bottom: 1px solid #fefeff;
}
Loading