From b0731ad1b8b9b0acafd4e0dd72eaefbcfb55fda0 Mon Sep 17 00:00:00 2001 From: reiyua Date: Sat, 19 Oct 2024 14:45:26 +1100 Subject: [PATCH] Add styles for the Error message on 404 page --- styles.css | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/styles.css b/styles.css index b8ce52f..96d2a8d 100644 --- a/styles.css +++ b/styles.css @@ -83,4 +83,17 @@ h1 { .social-logo.email-logo { width: 50px; height: 50px; -} \ No newline at end of file +} + +.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; +}