Spaces:
Running
Running
| body { | |
| background-image: url("Hintergrund_Chatbot.jpg"); | |
| background-size: cover ; | |
| margin: 0; | |
| padding: 0; | |
| font-family: Arial, sans-serif; | |
| } | |
| .box { | |
| display: inline-block; | |
| padding: 10px 20px; | |
| border: 2px solid #4b8a7d; | |
| border-radius: 0; | |
| color: #4b8a7d; | |
| text-align: center; | |
| cursor: pointer; | |
| } | |
| .box:hover { | |
| background: #4b8a7d; | |
| color: white; | |
| } | |
| .message-buttons-left bubble message-buttons with-avatar svelte-1ibfe7l { | |
| display: none; | |
| } | |
| .message.bot{ | |
| max-width: 75vh; | |
| background-color: #406656; | |
| border-color: #689a77; | |
| color: #ffffff; | |
| } | |
| .message.bot * { | |
| color: white ; | |
| } | |
| .message.user{ | |
| max-width: 75vh; | |
| background-color: #3b6665; | |
| border-color: #5f9a94; | |
| color: #ffffff; | |
| } | |
| .message.user * { | |
| color: #ffffff ; | |
| } | |
| textarea { | |
| background-color: #5F9A94; | |
| } | |
| #component-0 { | |
| position: absolute; | |
| top: 50%; | |
| left: 0; | |
| right: 0; | |
| transform: translateY(-50%); | |
| } | |
| #CHATBOT { | |
| background-color: #193236 ; | |
| } | |
| .message-row img { | |
| margin: 0px ; | |
| background-color: none; | |
| } | |
| .avatar-container img { | |
| padding: 0px ; | |
| } | |
| #left-image { | |
| pointer-events: none; | |
| } | |
| header { | |
| background-color: #1C5751; | |
| color: #f4f4f4; | |
| padding: 10px 20px; | |
| display: flex; | |
| justify-content: space-between; | |
| align-items: center; | |
| width: 100%; | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| z-index: 1000; | |
| } | |
| .logo { | |
| display: flex; | |
| align-items: center; | |
| } | |
| .logo img { | |
| width: 240px; | |
| margin-right: 10px; | |
| object-fit: cover; /* Passt das Bild an den Container an */ | |
| } | |
| .burger-menu { | |
| position: relative; | |
| display: inline-block; | |
| margin-top: center; | |
| margin-right: 30px; | |
| } | |
| .burger-menu button { | |
| background-color: #1C5751; | |
| color: #f4f4f4; | |
| border-color: #193236; | |
| padding: 0; | |
| width: 50px; | |
| height: 50px; | |
| cursor: pointer; | |
| border-radius: 5px; | |
| display: flex; | |
| align-items: center; | |
| justify-content: center; | |
| font-size: 20px; | |
| } | |
| .burger-menu button:hover { | |
| background-color: #3b6665; | |
| } | |
| .dropdown-content { | |
| display: none; | |
| position: absolute; | |
| right: 0; | |
| background-color: #444; | |
| min-width: 160px; | |
| box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); | |
| z-index: 1; | |
| } | |
| .dropdown-content a { | |
| color: white; | |
| padding: 12px 16px; | |
| text-decoration: none; | |
| display: block; | |
| } | |
| .dropdown-content a:hover { | |
| background-color: #3b6665; | |
| } | |
| .dropdown-content a.current { | |
| background-color: #1C5751; | |
| color: #f4f4f4; | |
| } | |
| .burger-menu:hover .dropdown-content { | |
| display: block; | |
| } | |
| .content { | |
| padding: 20px; | |
| flex-grow: 1; | |
| margin-top: 80px; | |
| } | |
| footer { | |
| background-color: #1C5751; | |
| color: #fff; | |
| text-align: center; | |
| padding: 10px 0; | |
| width: 100%; | |
| position: fixed; | |
| bottom: 0; | |
| } | |
| /* Style für das Pop-up-Fenster */ | |
| #popup { | |
| display: none; /* Standardmäßig versteckt */ | |
| position: fixed; | |
| top: 52%; | |
| left: 50%; | |
| transform: translate(-50%, -50%); | |
| width: 75%; | |
| height: 70%; | |
| padding: 20px; | |
| background-image: url("Hintergrund_Chatbot.jpg"); | |
| background-size: cover; | |
| -webkit-backdrop-filter: blur(8px) ; /*Safari und andere Webkit-Browser*/ | |
| backdrop-filter: blur(8px) ; /*Standard, Chrome und Edge*/ | |
| box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); | |
| z-index: 999; /* Über dem iframe */ | |
| display: flex; | |
| align-items: center; | |
| } | |
| #popup img { | |
| max-width: 150px; | |
| margin-right: 20px; | |
| } | |
| #popup div { | |
| text-align: justify; | |
| margin-right: 40px; /* Erhöhen des Abstands zur rechten Kante */ | |
| } | |
| #popup button { | |
| align-self: flex-end; /* Button am unteren Rand ausrichten */ | |
| margin-top: 20px; /* Abstand zum Inhalt oben */ | |
| margin-left: auto; /* Button nach rechts schieben */ | |
| padding: 15px 30px; /* Größerer Button */ | |
| background-color: #4b8a7d; | |
| color: white; | |
| border: none; | |
| border-radius: 5px; | |
| cursor: pointer; | |
| font-size: 16px; | |
| } | |
| #popup h2 { | |
| color: #f4f4f4; | |
| } | |
| #popup p { | |
| color: #bcdec6; | |
| margin-left: 20px; | |
| } | |
| /* Hintergrundüberlagerung */ | |
| #overlay { | |
| display: none; /* Standardmäßig versteckt */ | |
| position: fixed; | |
| top: 0; | |
| left: 0; | |
| width: 100%; | |
| height: 100%; | |
| background-color: rgba(0, 0, 0, 0.5); | |
| z-index: 998; /* Unter dem Pop-up, aber über dem iframe */ | |
| } | |
| #pdfButton { | |
| position: fixed; | |
| bottom: calc(70px + 20px); /* Höhe des Footers + angepasster Abstand */ | |
| left: 45px; /* Gleichmäßiger Abstand vom linken Rand */ | |
| width: 150px; /* Festgelegte Breite, um den Text auf zwei Zeilen zu zwingen */ | |
| padding: 10px; /* Angepasste Polsterung, um den Button kürzer zu machen */ | |
| text-align: center; /* Text zentrieren */ | |
| background-color: #4b8a7d; | |
| color: white; | |
| border: none; | |
| border-radius: 5px; | |
| cursor: pointer; | |
| font-size: 14px; /* Leicht verkleinerte Schriftgröße */ | |
| line-height: 1.2; /* Zeilenhöhe, um den Text angenehm zu verteilen */ | |
| z-index: 997; /* Unter dem Pop-up, aber über dem iframe */ | |
| } | |
| #pdfButton:hover { | |
| background-color: #3b6665; /* Hintergrundfarbe beim Hover-Effekt */ | |
| } |