rblur 0.2.0

一個支援網頁配置介面的輕量級網頁伺服器
Documentation
<!doctype html>
<html lang="zh-TW">

<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>Web Service</title>
  <style>
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      background-color: #f8f9fa;
    }

    header {
      background-color: #fff;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      padding: 2rem;
      text-align: center;
    }

    main {
      flex: 1;
      padding: 4rem 2rem;
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
    }

    h1 {
      color: #2c3e50;
      margin: 0;
      font-size: 2.5rem;
      font-weight: 600;
    }

    p {
      color: #505764;
      font-size: 1.2rem;
      margin: 1.5rem 0;
    }

    .status {
      background-color: #e8f5e9;
      color: #2e7d32;
      padding: 0.5rem 1rem;
      border-radius: 4px;
      display: inline-block;
      margin-top: 2rem;
    }

    footer {
      background-color: #fff;
      padding: 1.5rem;
      text-align: center;
      color: #6c757d;
      box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 2rem;
      }

      p {
        font-size: 1rem;
      }
    }
  </style>
</head>

<body>
  <header>
    <h1>Web Service</h1>
  </header>

  <main>
    <p>歡迎訪問我們的網絡服務平台</p>
    <p>我們致力於提供穩定、安全、高效的網絡服務</p>
    <div class="status">系統運行正常</div>
  </main>

  <footer>
    <p>&copy; 2024 Web Service. 還沒保留所有權利。</p>
  </footer>
</body>

</html>