From d273005d1c9b0cc6c9c07de1fda2564180eafd8b Mon Sep 17 00:00:00 2001 From: petruspistor Date: Sat, 23 Aug 2025 11:22:48 +0000 Subject: [PATCH] Modified HTML and CSS to display UC --- resources/css/index.css | 41 +++++++++++++++++++++++++++++++++-------- 1 file changed, 33 insertions(+), 8 deletions(-) diff --git a/resources/css/index.css b/resources/css/index.css index 870cb09..311453e 100755 --- a/resources/css/index.css +++ b/resources/css/index.css @@ -1,11 +1,36 @@ -body { - -margin: 0; -padding: 0; -background-color: #F5F5F5 -font-family: Iceland; -line-height: 1.0 - +* { + + margin: 0; + padding: 0; + box-sizing: border-box; } +html, body { + + height: 100%; +} +body { + + + display: flex; + justify-content: center; + aligin-times: center; + background: linear-gradient(180deg, #f7d34b, #e0a82e); + + /* fallback solid background */ + + background-color: #f7d34b; + font-family: Arial, san-serif; +} + + /* Center the Image */ + +.container img { + + max-width: 90%; + height: auto; + border: 6px solid #e0a82e; + border-radius: 12px; + box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25); +}