374 lines
6.6 KiB
CSS
374 lines
6.6 KiB
CSS
/* Zentrieren des gesamten Inhalts und Grundfarbgebung */
|
|
body {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
/* height: 100vh;*/
|
|
margin: 0;
|
|
background-color: #e9ecef;
|
|
}
|
|
|
|
/* Container für zentrales Layout */
|
|
.container {
|
|
text-align: center;
|
|
max-width: 500px;
|
|
padding: 20px;
|
|
}
|
|
|
|
/* Styling für die Form-Wrapper */
|
|
.form-wrapper {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
gap: 20px;
|
|
}
|
|
|
|
/* Formulare aufhübschen */
|
|
.form {
|
|
background: #ffffff;
|
|
padding: 20px;
|
|
width: 75%;
|
|
border-radius: 8px;
|
|
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
h1 {
|
|
color: #333;
|
|
font-size: 1.8rem;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
h2 {
|
|
color: #007bff;
|
|
font-size: 1.5rem;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
input, button {
|
|
width: 80%;
|
|
padding: 12px;
|
|
margin: 10px 0;
|
|
border-radius: 5px;
|
|
border: 1px solid #ddd;
|
|
font-size: 1rem;
|
|
}
|
|
|
|
input:focus {
|
|
outline: none;
|
|
border-color: #007bff;
|
|
box-shadow: 0px 0px 5px rgba(0, 123, 255, 0.3);
|
|
}
|
|
|
|
button {
|
|
background-color: #007bff;
|
|
color: #ffffff;
|
|
border: none;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
/* Responsive Design */
|
|
@media (max-width: 600px) {
|
|
.form-wrapper {
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.form {
|
|
width: 90%;
|
|
}
|
|
}
|
|
|
|
/* Für die welcome.html Seite */
|
|
|
|
/* Grundlayout für den gesamten Body */
|
|
|
|
/* Header Layout */
|
|
.header {
|
|
z-index: 10;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 10px 20px;
|
|
background-color: #ffffff;
|
|
border-bottom: 2px solid #ddd;
|
|
box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
|
|
position: fixed;
|
|
top: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Linksbündiger Willkommenstext */
|
|
.header-welcome {
|
|
font-size: 1.5rem;
|
|
color: #333;
|
|
margin: 0;
|
|
flex-grow: 1;
|
|
text-align: left;
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
/* Benutzerinformationen (zentriert) */
|
|
.header-user-info {
|
|
text-align: center;
|
|
color: #007bff;
|
|
margin-right: 2%;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
/* Header-Buttons für Admin und Logout (rechts) */
|
|
.header-buttons {
|
|
display: flex;
|
|
gap: 10px;
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.header-btn {
|
|
background-color: #007bff;
|
|
color: #ffffff;
|
|
border: none;
|
|
width: auto;
|
|
border-radius: 5px;
|
|
padding: 8px 12px;
|
|
cursor: pointer;
|
|
font-size: 1rem;
|
|
transition: background-color 0.3s;
|
|
}
|
|
|
|
.header-btn:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
/* Freier Platz für zukünftige Features */
|
|
main {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
/* Benutzerliste Styling */
|
|
.user-list {
|
|
margin-top: 6rem;
|
|
padding: 20px;
|
|
background-color: #f8f9fa;
|
|
border-radius: 8px;
|
|
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
/* Titel im Header */
|
|
.header-title {
|
|
font-size: 1.5rem;
|
|
color: #333;
|
|
margin: 0;
|
|
flex-grow: 1;
|
|
text-align: left;
|
|
padding: 0.5rem;
|
|
}
|
|
|
|
.button-delete {
|
|
color: red;
|
|
}
|
|
|
|
/* Chat Interface Styles
|
|
.chat-container {
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100vh;
|
|
background-color: #f4f6f8;
|
|
border: 1px solid #ccc;
|
|
border-radius: 8px;
|
|
overflow: hidden;
|
|
}*/
|
|
|
|
.chat-box {
|
|
flex: 1;
|
|
padding: 15px;
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.chat-message {
|
|
margin-bottom: 10px;
|
|
padding: 10px;
|
|
border-radius: 8px;
|
|
max-width: 80%;
|
|
word-wrap: break-word;
|
|
}
|
|
|
|
.chat-message.user {
|
|
background-color: #007bff;
|
|
color: #fff;
|
|
align-self: flex-end;
|
|
}
|
|
|
|
.chat-message.bot {
|
|
background-color: #e0e0e0;
|
|
color: #000;
|
|
align-self: flex-start;
|
|
}
|
|
|
|
.chat-input-container {
|
|
display: flex;
|
|
padding: 10px;
|
|
background-color: #ffffff;
|
|
border-top: 1px solid #ccc;
|
|
}
|
|
|
|
.chat-input {
|
|
flex: 1;
|
|
padding: 8px;
|
|
border-radius: 4px;
|
|
border: 1px solid #ccc;
|
|
font-size: 16px;
|
|
resize: none; /* Entfernt die Möglichkeit, das Textfeld zu vergrößern */
|
|
overflow-y: auto; /* Fügt einen vertikalen Scroll hinzu, wenn nötig */
|
|
max-height: 80px; /* Maximale Höhe für das Textfeld */
|
|
}
|
|
|
|
.chat-input:focus {
|
|
outline: none; /* Entfernt den Standard-Fokusrahmen */
|
|
}
|
|
|
|
/* Kleinere Sendetaste */
|
|
.chat-send-button {
|
|
padding: 8px 12px; /* Kleinere Abmessungen */
|
|
background-color: #007bff;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
font-size: 14px; /* Kleinere Schriftgröße */
|
|
cursor: pointer;
|
|
}
|
|
|
|
.chat-send-button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
|
|
/* Haupt-Container für Layout mit Seitenleiste */
|
|
.main-container {
|
|
height: 90vh;
|
|
width: 100%;
|
|
display: flex;
|
|
transform: translate(0px, 6rem);
|
|
}
|
|
|
|
/* Linke Seitenleiste */
|
|
.sidebar {
|
|
width: 200px;
|
|
background-color: #2c3e50;
|
|
color: #fff;
|
|
padding: 15px;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.sidebar h3 {
|
|
margin: 0;
|
|
padding-bottom: 10px;
|
|
border-bottom: 1px solid #fff;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.chat-session-button {
|
|
background-color: #34495e;
|
|
color: #fff;
|
|
padding: 10px;
|
|
margin-top: 10px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
width: 100%;
|
|
cursor: pointer;
|
|
text-align: left;
|
|
}
|
|
|
|
.chat-session-button:hover {
|
|
background-color: #3b5998;
|
|
}
|
|
|
|
/* Chatbereich Styles (wie oben beschrieben) */
|
|
.chat-container {
|
|
width: 100%;
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: #f4f6f8;
|
|
border-left: 1px solid #ccc;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.chat-box {
|
|
flex: 1;
|
|
padding: 15px;
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#chatBox {
|
|
display: flex;
|
|
flex-direction: column-reverse;
|
|
}
|
|
|
|
#sendButton {
|
|
width: auto;
|
|
}
|
|
|
|
/* Hinzufügen von Lösch-Button-Stilen */
|
|
.chat-session-button-container {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.chat-session-button {
|
|
flex: 1;
|
|
background-color: #34495e;
|
|
color: #fff;
|
|
padding: 8px;
|
|
border: none;
|
|
border-radius: 4px;
|
|
text-align: left;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.chat-session-button:hover {
|
|
background-color: #3b5998;
|
|
}
|
|
|
|
/* Löschen-Button */
|
|
.delete-chat-button {
|
|
width: auto;
|
|
background-color: #e74c3c;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
padding: 5px;
|
|
margin-left: 8px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.delete-chat-button:hover {
|
|
background-color: #c0392b;
|
|
}
|
|
|
|
/* Neuer Chat-Button */
|
|
#newChatButton {
|
|
background-color: #2ecc71;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
padding: 10px;
|
|
margin-bottom: 10px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#newChatButton:hover {
|
|
background-color: #27ae60;
|
|
}
|
|
|
|
|