From 5cf514c17a5c0ec3c2c558a3d35c4fadb8bc45fc Mon Sep 17 00:00:00 2001 From: mic Date: Sun, 21 Jul 2024 15:43:29 +0200 Subject: [PATCH] added missing style.css file --- api_webchat/styles.css | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 api_webchat/styles.css diff --git a/api_webchat/styles.css b/api_webchat/styles.css new file mode 100644 index 00000000..0b71993e --- /dev/null +++ b/api_webchat/styles.css @@ -0,0 +1,42 @@ +/* Global styles */ +body { + font-family: Arial, sans-serif; + margin: 0; + padding: 0; + display: flex; + justify-content: center; /* Center horizontally */ + height: 100vh; /* Full viewport height */ +} + +#appContainer { + display: flex; + flex-direction: column; + height: 100vh; /* Full height of the viewport */ + max-width: 768px; /* Max width of 768px */ + width: 100%; /* Use full width up to 768px */ + margin: 0 auto; /* Center horizontally without affecting vertical alignment */ +} + +messages-area { + flex-grow: 1; + overflow: auto; +} + +/* Colors */ +:root { + --red: #ff0000; + --green: #00ff00; + --margin: 10px; + --padding: 10px; +} + +/* Typography */ +h1, h2, h3, h4, h5, h6 { + margin: 0 0 10px 0; + font-weight: normal; +} + +p { + margin: 0 0 10px 0; +} +