diff options
author | Go MAEDA <maeda@farend.jp> | 2024-12-19 01:32:02 +0000 |
---|---|---|
committer | Go MAEDA <maeda@farend.jp> | 2024-12-19 01:32:02 +0000 |
commit | 76016d0e4945ce3267ccfd5096b68d854edfb45c (patch) | |
tree | 21e1cb58be05f21b663f4769b4d91cd13473fba4 | |
parent | 1de6663ceb2187fc47e6cc493746af89933d01cc (diff) | |
download | redmine-76016d0e4945ce3267ccfd5096b68d854edfb45c.tar.gz redmine-76016d0e4945ce3267ccfd5096b68d854edfb45c.zip |
Improve readability of error pages by updating fonts and layout (#42005).
Patch by Go MAEDA (user:maeda).
git-svn-id: https://svn.redmine.org/redmine/trunk@23411 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | public/404.html | 6 | ||||
-rw-r--r-- | public/500.html | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/public/404.html b/public/404.html index a1d7e970f..fe293183e 100644 --- a/public/404.html +++ b/public/404.html @@ -4,9 +4,9 @@ <meta charset="utf-8" /> <title>Redmine 404 error</title> <style> - body {font-family: "Trebuchet MS", Georgia, "Times New Roman", serif; color: #303030; margin: 10px;} - h1 {font-size:1.5em;} - p {font-size:0.8em;} + body {font-family: sans-serif; color: #303030; margin: 20px; line-height: 1.6;} + h1 {font-size: 1.5rem;} + p {font-size: 0.875rem;} </style> </head> <body> diff --git a/public/500.html b/public/500.html index 254e20df2..91b804a7c 100644 --- a/public/500.html +++ b/public/500.html @@ -4,9 +4,9 @@ <meta charset="utf-8" /> <title>Redmine 500 error</title> <style> - body {font-family: "Trebuchet MS", Georgia, "Times New Roman", serif; color: #303030; margin: 10px;} - h1 {font-size:1.5em;} - p {font-size:0.8em;} + body {font-family: sans-serif; color: #303030; margin: 20px; line-height: 1.6;} + h1 {font-size: 1.5rem;} + p {font-size: 0.875rem;} </style> </head> <body> |