diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-25 20:21:51 +0200 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2022-04-25 20:21:51 +0200 |
commit | 7681a49af56c686454aecf84a29ba20c646b2048 (patch) | |
tree | f4fb8ef72454a7ae3e4ba3ac84bc23369f782a56 | |
parent | error pages yay (diff) | |
download | gitjoe-www-7681a49af56c686454aecf84a29ba20c646b2048.tar.gz gitjoe-www-7681a49af56c686454aecf84a29ba20c646b2048.tar.bz2 gitjoe-www-7681a49af56c686454aecf84a29ba20c646b2048.tar.xz gitjoe-www-7681a49af56c686454aecf84a29ba20c646b2048.tar.zst gitjoe-www-7681a49af56c686454aecf84a29ba20c646b2048.zip |
Err fix
-rw-r--r-- | css/site.css | 4 | ||||
-rw-r--r-- | err/403.html | 2 | ||||
-rw-r--r-- | err/404.html | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/css/site.css b/css/site.css index 85570ed..7e9bc24 100644 --- a/css/site.css +++ b/css/site.css @@ -128,6 +128,10 @@ div.sidebar ul { list-style: square; } +div.sidebar hr { + border-top: none; +} + div.sidebar { float: right; background-color: #eee4e4; diff --git a/err/403.html b/err/403.html index ca5ff20..93f20bc 100644 --- a/err/403.html +++ b/err/403.html @@ -21,7 +21,7 @@ <html> <head> <title>GitJoe - 403</title> - <link rel="stylesheet" type="text/css" href="../css/site.css"> + <link rel="stylesheet" type="text/css" href="../../css/site.css"> <meta charset="UTF-8"> </head> <body> diff --git a/err/404.html b/err/404.html index 7d5dc17..d5492ab 100644 --- a/err/404.html +++ b/err/404.html @@ -21,7 +21,7 @@ <html> <head> <title>GitJoe - 404</title> - <link rel="stylesheet" type="text/css" href="../css/site.css"> + <link rel="stylesheet" type="text/css" href="../../css/site.css"> <meta charset="UTF-8"> </head> <body> |