Add styles for the Error message on 404 page

This commit is contained in:
Ray 2024-10-19 14:45:26 +11:00
parent 2b58a885c4
commit b0731ad1b8
1 changed files with 14 additions and 1 deletions

View File

@ -84,3 +84,16 @@ h1 {
width: 50px; width: 50px;
height: 50px; height: 50px;
} }
.error-message {
font-size: 1.5em;
color: #ffcccb; /* Light red color */
background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
padding: 15px 30px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
margin-top: 20px;
display: inline-block;
text-align: center;
font-family: 'Jersey 10', sans-serif;
}