color change
[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: #b8be55;
22     color: #eee;
23     padding: 1em 0;
24     
25 }
26 #header a {
27     text-decoration: none;
28 }
29 h1 {
30     font-size: 2em;
31     max-width: 20em;
32     margin: auto;
33     margin-top: 0;
34     color: #eee;
35 }
36
37
38 a.big-button {
39     background: #999;
40     color: white;
41     padding: 1em;
42     text-decoration:none;
43     border: 1px solid #ddd;
44     border-radius: 1em;
45     display: block;
46     text-align: center;
47     margin-top: 1em;
48 }
49
50 a.big-button:hover {
51     background: #aaa;
52 }
53
54     </style>
55 </head>
56
57 <body>
58     <div id="header">
59     <a href='/'><h1>Nie ma takiej strony</h1></a>
60     </div>
61
62     <div id="body">
63         <p>Nie znaleziono żądanej strony.</p>
64
65         <a class='big-button' href="/">Powrót do strony głównej.</a>
66
67     </div>
68 </body>
69
70 </html>