templates/frontend-eforum/404.html.twig line 1

Open in your IDE?
  1. <html>
  2. <head>
  3.     <meta charset="UTF-8">
  4.     <style>
  5.         body {
  6.             background: rgb(0, 73, 150);
  7.             font-family: "Montserrat", sans-serif !important;
  8.             margin-top: 100px;
  9.             text-align: center;
  10.         }
  11.         .rounded {
  12.             width: 300px;
  13.             height: 300px;
  14.             -webkit-border-radius: 50%;
  15.             -moz-border-radius: 50%;
  16.             border-radius: 50%;
  17.             background: rgb(255, 255, 255);
  18.             color: #be9b61;
  19.             margin: 0 auto;
  20.             box-shadow: 0px 2px 6.58px 0.42px rgba(0, 0, 0, 0.2);
  21.         }
  22.         .status {
  23.             text-align: center;
  24.             color: rgb(0, 73, 150);
  25.             font-size: 100px;
  26.             margin-bottom: 0;
  27.             padding-top: 90px;
  28.             font-weight: bold;
  29.             line-height: 1;
  30.         }
  31.         .error {
  32.             color: rgb(0, 73, 150);
  33.             margin-top: 0;
  34.             font-weight: bold;
  35.         }
  36.         p {
  37.             color: rgb(255, 255, 255);
  38.             font-size: 20px;
  39.             text-align: center;
  40.         }
  41.         .title {
  42.             font-size: 35px;
  43.             margin-bottom: 15px;
  44.         }
  45.         .btn {
  46.             display: inline-block;
  47.             padding: 10px 20px;
  48.             border-radius: 5px;
  49.             border: 1px solid #FFF;
  50.         }
  51.         .btn:hover {
  52.             color: rgb(0, 73, 150);
  53.             background: #FFF;
  54.         }
  55.     </style>
  56. </head>
  57. <body>
  58.     <div class="rounded">
  59.         <p class="status">404</p>
  60.         <p class="error">ERROR</p>
  61.     </div>
  62.     <p class="title">Podana strona nie istnieje</p>
  63.     <p class="subtitle">Wygląda na to, że strona nie jest już dostępna.</p>
  64.     <a href="{{ path('efShowDynamicTemplate') }}"><p class="btn">Wróć do strony głównej</p></a>
  65. </body>
  66. </html>