diff options
Diffstat (limited to 'src/static')
| -rw-r--r-- | src/static/5xx.html | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/src/static/5xx.html b/src/static/5xx.html index 6998383..f503fd4 100644 --- a/src/static/5xx.html +++ b/src/static/5xx.html @@ -8,7 +8,25 @@ <meta http-equiv="refresh" content="10"> </head> <body style="background: black; color: white"> - <img style="width: 100%" src="test_pattern.jpg"> + +<style> +.container { + display: flex; + justify-content: center; /* Center horizontally */ + align-items: center; /* Center vertically */ + height: 100vh; /* Set the container height to 100% of the viewport height */ +} + +.container img { + height: 100%; + /* Add any other necessary styling */ +} +</style> + + <div class="container"> + <img src="test_pattern.jpg"> + </div> + <div style=" position:absolute; top:50%; left:50%; |
