mirror of
https://github.com/SophiaAtkinson/steamwidgets-web.git
synced 2025-06-27 14:37:41 -07:00
42 lines
1.0 KiB
PHP
42 lines
1.0 KiB
PHP
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Asatru PHP - Error 500</title>
|
|
|
|
<style>
|
|
html, body {
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: rgb(30, 30, 30);
|
|
color: rgb(100, 100, 100);
|
|
}
|
|
|
|
.outer {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.inner {
|
|
position: absolute;
|
|
margin: 0;
|
|
top: 50%;
|
|
left: 50%;
|
|
-ms-transform: translateX(-50%) translateY(-50%);
|
|
transform: translateX(-50%) translateY(-50%);
|
|
font-size: 2em;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<div class="outer">
|
|
<div class="inner">
|
|
<strong>500</strong> | Internal server error
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |