From 8590db9f41c82b201f5c60ce074c4c0223aba2d1 Mon Sep 17 00:00:00 2001 From: Low Front Date: Wed, 8 Jan 2025 00:45:38 +0900 Subject: [PATCH] feat: add error page --- docs/index.html | 26 +++++++++++++++++++++++++- docs/style.css | 14 ++++++++++++++ 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index d5f7bab..94d2a56 100644 --- a/docs/index.html +++ b/docs/index.html @@ -19,10 +19,34 @@ - +

Cool Retro Hyper

+
+ +

+ Cool Retro Hyper (https://github.com/fronterior/cool-retro-hyper) +

+

Error

+ +
+ diff --git a/docs/style.css b/docs/style.css index cc8a494..ad8e434 100644 --- a/docs/style.css +++ b/docs/style.css @@ -32,3 +32,17 @@ h1 { width: 100%; height: 100%; } + +#error { + position: absolute; + width: 100%; + height: 100%; + top: 0; + left: 0; + z-index: 1; + display: none; + flex-direction: column; + align-items: center; + justify-content: center; + color: white; +}