| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <!doctype html>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>Fehler 404</title>
- <style>
- body, input {
- background-color:rgba(244,244,244,1);
- }
- article, input {
- max-width:1024px;
- margin:0px auto;
- font-family:Arial, Helvetica, sans-serif;
- font-size:18px;
- font-weight:lighter;
- color:rgba(88,88,88,1);
- }
- h1 {
- font-size:30px;
- font-weight:lighter;
- }
- a, a:visited {
- text-decoration:none;
- font-size:22px;
- color:rgba(0,136,194,1);
- moz-transition-property:all;
- -moz-transition-duration:1s;
- -o-transition-property:all;
- -o-transition-duration:1s;
- -webkit-transition-property:all;
- -webkit-transition-duration:1s;
- }
- a:hover {
- color:rgba(88,88,88,1);
- moz-transition-property:all;
- -moz-transition-duration:1s;
- -o-transition-property:all;
- -o-transition-duration:1s;
- -webkit-transition-property:all;
- -webkit-transition-duration:1s;
- margin-left:12px;
- }
- li {
- line-height:150%;
- }
- article button {
- background-color: rgba(222,222,222,0.6);
- border:1px solid rgba(0,136,194,1);
- border-radius:5px;
- font-size:24px;
- color:rgba(0,136,194,1);
- font-family:Arial, Helvetica, sans-serif;
- padding:8px 12px;
- }
- article button:hover, article button:active { /* button hover*/
- background-color: rgba(222,222,222,0.4);
- cursor:pointer;
- border:1px solid rgba(0,136,194,1);
- }
- </style>
- </head>
- <body>
- <article>
- <h1>Fehler 404</h1>
- Die Ressource wurde unter dem angegebenen URI nicht gefunden.
- <br>
- <br><br>
- Diese Seiten liegen auf diesem Server!<br><br>
- <li><a href="http://valentinmuseum.at">Valentinmuseum.at</a></li>
- <li><a href="http://neubauerhof.com">Neubauerhof.com</a></li>
- <li><a href="http://matschiner.co">Matschiner.co</a></li>
- <li><a href="http://UID-Suche.at">UID-Suche.at</a></li><br><br><br>
- </article>
- </body>
- </html>
|