mirror of
https://github.com/SophiaAtkinson/steamwidgets-web.git
synced 2025-06-27 08:07:41 -07:00
41 lines
979 B
PHP
41 lines
979 B
PHP
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<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> |