header.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <?php use App\Utils\Html, App\Utils\Url ?>
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title><?= Html::escape($title) ?></title>
  7. <link rel="icon" type="image/x-icon" href="<?= Url::base('favicon.ico') ?>">
  8. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  9. <link rel="stylesheet" href="<?= Url::base('css/normalize.css') ?>">
  10. <link rel="stylesheet" href="<?= Url::base('css/terminal.css') ?>">
  11. <style>
  12. :root {
  13. --global-font-size: 15px;
  14. --global-line-height: 1.4em;
  15. --global-space: 10px;
  16. --font-stack: Menlo, Monaco, Lucida Console, Liberation Mono,
  17. DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace,
  18. serif;
  19. --mono-font-stack: Menlo, Monaco, Lucida Console, Liberation Mono,
  20. DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace,
  21. serif;
  22. --background-color: #222225;
  23. --page-width: 60em;
  24. --font-color: #e8e9ed;
  25. --invert-font-color: #222225;
  26. --secondary-color: #a3abba;
  27. --tertiary-color: #a3abba;
  28. --primary-color: #62c4ff;
  29. --error-color: #ff3c74;
  30. --progress-bar-background: #3f3f44;
  31. --progress-bar-fill: #62c4ff;
  32. --code-bg-color: #3f3f44;
  33. --input-style: solid;
  34. --display-h1-decoration: none;
  35. }
  36. .text-error {
  37. color: var(--error-color);
  38. }
  39. textarea {
  40. resize: vertical;
  41. }
  42. </style>
  43. </head>
  44. <body>
  45. <main class="container">