pretty much working version
[koed-quiz.git] / koedquiz / templates / 404.html
1 <!DOCTYPE HTML>
2 <html>
3
4 <head>
5     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6     <title>Nie ma takiej strony</title>
7     <style type="text/css">
8 html, body {
9     margin: 0;
10     padding: 0;
11 }
12 body {
13     font-family: arial, verdana, sans-serif;
14 }
15 #body {
16     max-width: 40em;
17     margin: auto;
18 }
19
20 #header {
21     background: #222;
22     color: #eee;
23     padding: 1em 0;
24     
25 }
26 h1 {
27     font-size: 2em;
28     max-width: 20em;
29     margin: auto;
30     margin-top: 0;
31     color: #eee;
32 }
33
34
35 a.big-button {
36     background: #999;
37     color: white;
38     padding: 1em;
39     text-decoration:none;
40     border: 1px solid #ddd;
41     border-radius: 1em;
42     display: block;
43     text-align: center;
44     margin-top: 1em;
45 }
46
47 a.big-button:hover {
48     background: #aaa;
49 }
50
51     </style>
52 </head>
53
54 <body>
55     <div id="header">
56     <a href='/'><h1>Nie ma takiej strony</h1></a>
57     </div>
58
59     <div id="body">
60         <p>Nie znaleziono żądanej strony.</p>
61
62         <a class='big-button' href="/">Powrót do strony głównej.</a>
63
64     </div>
65 </body>
66
67 </html>