Lund-Org/cherry

View on GitHub
src/assets/default_pages/5xx.html

Summary

Maintainability
Test Coverage
<!DOCTYPE html>
<html>
  <head>
    <style>
      html { height: 100%; }
      body {
        min-height: 100%;
        height: 100%;
      }
      * {
        font-family: Verdana, Tahoma, Arial, sans-serif;
        margin: 0;
        padding: 0;
      }
      .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-content: center;
        height: 100%;
      }
      .container .center-block {
        font-size: 18px;
        text-align: center;
      }
      .container .center-block strong {
        font-size: 50px;
      }
    </style>
  </head>
  <body>
    <div class="container">
      <div class="center-block">
        <div>
          <strong>500</strong>
        </div>
        <div>The page could not be found</div>
      </div>
    </div>
  </body>
</html>