diff options
author | JoelHMikael <joel.h.kronqvist@gmail.com> | 2021-12-07 14:09:23 +0200 |
---|---|---|
committer | JoelHMikael <joel.h.kronqvist@gmail.com> | 2021-12-07 14:09:23 +0200 |
commit | 278d57ab2f06b246e2c671ba7f453408c0468318 (patch) | |
tree | 7ed140424a45ae11f934219ba4b6e81fb897e0df /404 | |
parent | 68bfb9cc8eeaeb93fa6b4eae649d82ddb1f01234 (diff) | |
download | LYLLRuoka-278d57ab2f06b246e2c671ba7f453408c0468318.tar.gz LYLLRuoka-278d57ab2f06b246e2c671ba7f453408c0468318.zip |
Made a frontend that can be looked at
Diffstat (limited to '404')
-rw-r--r-- | 404/index.css | 3 | ||||
-rw-r--r-- | 404/index.html | 8 |
2 files changed, 9 insertions, 2 deletions
diff --git a/404/index.css b/404/index.css new file mode 100644 index 0000000..ceb8016 --- /dev/null +++ b/404/index.css @@ -0,0 +1,3 @@ +body { + padding-top: calc(30vh); +} diff --git a/404/index.html b/404/index.html index ea9660a..e6771ad 100644 --- a/404/index.html +++ b/404/index.html @@ -4,9 +4,13 @@ <meta charset="utf-8"> <title>Page not found</title> <link href="/index.css" rel="stylesheet" type="text/css"> + <link href="/404/index.css" rel="stylesheet" type="text/css"> + <meta name="viewport" content="width=device-width, initial-scale=1"> </head> <body> - <h1>404: Page not found at \(path\).</h1> - <p>):</p> + <div class="float-block"> + <h1>404: sivua \(path\) ei löytynyt.</h1> + <p>Voi myös olla, että sinulla ei ole oikeuksia sivun tarkasteluun tai että palvelimella on tapahtunut virhe. Jos epäilet jälkimmäistä, otathan yhteyttä joel.kronqvist@edu.lohja.fi</p> + </div> </body> </html> |