From 226deb4df3e26ae22abf828ee10f5a0ff3a37965 Mon Sep 17 00:00:00 2001 From: jafreli Date: Fri, 17 Jan 2025 01:57:17 +0100 Subject: [PATCH] changed style --- view/styles.css | 50 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 50 insertions(+) diff --git a/view/styles.css b/view/styles.css index 202777f..d6bc130 100644 --- a/view/styles.css +++ b/view/styles.css @@ -50,3 +50,53 @@ h1 { height: 20px; /* Höhe des Logos */ margin-right: 8px; /* Abstand zwischen Logo und Text */ } + +.message { + background: #f9f9f9; + padding: 10px; + margin: 10px 0; + border-radius: 5px; + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); +} + +.message strong { + font-size: 16px; + color: #007BFF; +} + +.message p { + margin: 5px 0; +} + +.message small { + color: #666; + font-size: 12px; +} + +form { + display: flex; + flex-direction: column; + gap: 10px; +} + +form input, form textarea { + width: 100%; + padding: 10px; + border: 1px solid #ccc; + border-radius: 5px; +} + +form button { + padding: 10px; + background: #007BFF; + color: white; + border: none; + border-radius: 5px; + cursor: pointer; + transition: background 0.3s; +} + +form button:hover { + background: #0056b3; +} + -- 2.49.1