403.tpl 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="author" content="Minho" />
  6. <link rel="shortcut icon" href="{{cdnimg "/favicon.ico"}}">
  7. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  8. <meta name="renderer" content="webkit" />
  9. <meta name="viewport" content="width=device-width, initial-scale=1">
  10. <title>权限不足 - Powered by MinDoc</title>
  11. <link href="{{cdncss "/static/fonts/lato-100.css"}}" rel="stylesheet" type="text/css">
  12. <style type="text/css">
  13. html, body {
  14. height: 100%;
  15. }
  16. body {
  17. margin: 0;
  18. padding: 0;
  19. width: 100%;
  20. color: #B0BEC5;
  21. display: table;
  22. font-weight: 100;
  23. font-family: 'Lato',"Microsoft Yahei","Helvetica Neue",Helvetica,Arial,sans-serif;
  24. }
  25. .container {
  26. text-align: center;
  27. display: table-cell;
  28. vertical-align: middle;
  29. }
  30. .content {
  31. text-align: center;
  32. display: inline-block;
  33. }
  34. .title {
  35. font-size: 72px;
  36. margin-bottom: 40px;
  37. color: red;
  38. }
  39. </style>
  40. </head>
  41. <body>
  42. <div class="container">
  43. <div class="content">
  44. <div class="title">HTTP 403 : 权限不足</div>
  45. </div>
  46. </div>
  47. </body>
  48. </html>