Jade/views/layouts/main.html
2024-05-05 14:45:49 +02:00

149 lines
3.3 KiB
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>JADE 2.0</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@1.0.0/css/bulma.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<link href="https://fonts.googleapis.com/css?family=Russo+One" rel="stylesheet">
<style>
body,
html {
height: 100%;
margin: 0;
}
.chat-input-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
position: fixed;
bottom: 10px;
left: 0;
right: 0;
padding: 10px;
max-width: 800px;
/* Adjust this value to your desired maximum width */
margin: 0 auto;
/* Center the container horizontally */
}
.textarea-wrapper {
position: relative;
width: 100%;
}
.textarea {
width: 100%;
padding-right: 140px;
/* Adjust this value based on the button and dropdown width */
box-sizing: border-box;
}
.button-group {
position: absolute;
bottom: 10px;
right: 10px;
display: flex;
align-items: center;
gap: 10px;
}
</style>
</head>
<body>
<script src="https://unpkg.com/htmx.org@1.9.11"></script>
{% include "partials/navbar.html" %}
{{embed}}
<style>
.my-indicator {
display: none;
}
.htmx-request .my-indicator {
display: inline;
}
.htmx-request.my-indicator {
display: inline;
}
</style>
<!-- Style stuff -->
<style>
svg text {
font-family: 'Russo One', sans-serif;
text-transform: uppercase;
fill: #000;
stroke: #000;
font-size: 240px;
}
.message-content {
background-color: #303030;
border-radius: 5px;
padding: 10px;
}
.content {
font-size: 14px;
line-height: 1.5;
color: #ffffff;
}
.content pre {
font-family: monospace;
background-color: #363636 !important;
border-radius: 3px;
}
#chat-messages {
max-width: 800px;
margin: auto;
width: 95%;
}
#chat-input-form {
max-width: 900px;
margin: auto;
width: 98%;
}
:root {
--bulma-body-background-color: #202020;
--bulma-primary: #126d0f;
}
</style>
<!-- Animations stuff -->
<style>
.message-bot.htmx-added {
opacity: 0;
}
.message-bot {
opacity: 1;
transition: opacity 1s ease-out;
}
.message-user.htmx-added {
opacity: 0;
}
.message-user {
opacity: 1;
transition: opacity 1s ease-out;
}
</style>
</body>
</html>