You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.2 KiB

7 years ago
  1. <?php
  2. defined('BASEPATH') OR exit('No direct script access allowed');
  3. ?><!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <meta charset="utf-8">
  7. <title>Database Error</title>
  8. <style type="text/css">
  9. ::selection { background-color: #E13300; color: white; }
  10. ::-moz-selection { background-color: #E13300; color: white; }
  11. body {
  12. background-color: #fff;
  13. margin: 40px;
  14. font: 13px/20px normal Helvetica, Arial, sans-serif;
  15. color: #4F5155;
  16. }
  17. a {
  18. color: #003399;
  19. background-color: transparent;
  20. font-weight: normal;
  21. }
  22. h1 {
  23. color: #444;
  24. background-color: transparent;
  25. border-bottom: 1px solid #D0D0D0;
  26. font-size: 19px;
  27. font-weight: normal;
  28. margin: 0 0 14px 0;
  29. padding: 14px 15px 10px 15px;
  30. }
  31. code {
  32. font-family: Consolas, Monaco, Courier New, Courier, monospace;
  33. font-size: 12px;
  34. background-color: #f9f9f9;
  35. border: 1px solid #D0D0D0;
  36. color: #002166;
  37. display: block;
  38. margin: 14px 0 14px 0;
  39. padding: 12px 10px 12px 10px;
  40. }
  41. #container {
  42. margin: 10px;
  43. border: 1px solid #D0D0D0;
  44. box-shadow: 0 0 8px #D0D0D0;
  45. }
  46. p {
  47. margin: 12px 15px 12px 15px;
  48. }
  49. </style>
  50. </head>
  51. <body>
  52. <div id="container">
  53. <h1><?php echo $heading; ?></h1>
  54. <?php echo $message; ?>
  55. </div>
  56. </body>
  57. </html>