fix scrolling bar
This commit is contained in:
parent
fa4f1473ad
commit
734d7f3a09
2 changed files with 260 additions and 185 deletions
|
@ -4,17 +4,17 @@
|
|||
--font-family: Arial, sans-serif;
|
||||
--history-background-color: rgb(0, 0, 48);
|
||||
--models-background-color: rgb(0, 0, 48);
|
||||
--code-model-color: red;
|
||||
--math-model-color: green;
|
||||
--language-model-color: blue;
|
||||
--default-model-color: yellow;
|
||||
--custom-model-color: purple;
|
||||
--output-background-color: black; /* Set the conversation background to black */
|
||||
--user-message-color: rgb(0, 128, 255); /* Blueish bubble for user */
|
||||
--ai-message-color: rgb(100, 100, 255); /* Lighter blue for AI */
|
||||
--output-background-color: black;
|
||||
/* Set the conversation background to black */
|
||||
--user-message-color: rgb(0, 128, 255);
|
||||
/* Blueish bubble for user */
|
||||
--ai-message-color: rgb(100, 100, 255);
|
||||
/* Lighter blue for AI */
|
||||
--input-background-color: rgb(0, 0, 48);
|
||||
--input-button-color: rgb(0, 128, 255);
|
||||
--input-button-hover-color: rgb(0, 100, 200);
|
||||
--scrollbar-track: rgb(91, 172, 253);
|
||||
--scrollbar-thumb: rgb(0, 88, 176);
|
||||
}
|
||||
|
||||
/* Global Reset */
|
||||
|
@ -24,9 +24,13 @@
|
|||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html, body {
|
||||
|
||||
|
||||
html,
|
||||
body {
|
||||
height: 100vh;
|
||||
overflow: hidden; /* Prevent scrolling */
|
||||
overflow: hidden;
|
||||
/* Prevent scrolling */
|
||||
}
|
||||
|
||||
/* Body Styling */
|
||||
|
@ -80,21 +84,28 @@ header a:hover {
|
|||
.container {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 3fr;
|
||||
grid-template-rows: 1fr 1fr 0.5fr;
|
||||
grid-template-rows: 3fr 1fr 1fr 1fr;
|
||||
gap: 10px;
|
||||
width: 90vw;
|
||||
height: 90vh;
|
||||
height: 95vh;
|
||||
}
|
||||
|
||||
/* History Section */
|
||||
.history {
|
||||
grid-column: 1;
|
||||
grid-row: 1;
|
||||
border-radius: 2em;
|
||||
|
||||
.history-background {
|
||||
grid-column: 1/2;
|
||||
grid-row: 1/2;
|
||||
height: 100%;
|
||||
overflow: hidden;
|
||||
background-color: var(--history-background-color);
|
||||
padding: 1em;
|
||||
overflow-y: auto;
|
||||
height: 50vh;
|
||||
border-radius: 2em;
|
||||
}
|
||||
|
||||
.history {
|
||||
height: 100%;
|
||||
overflow-y: scroll;
|
||||
padding-right: 10px;
|
||||
}
|
||||
|
||||
.history ul {
|
||||
|
@ -120,13 +131,33 @@ header a:hover {
|
|||
}
|
||||
|
||||
/* Models Section */
|
||||
.models {
|
||||
.model-background {
|
||||
grid-column: 1/2;
|
||||
grid-row: 2/5;
|
||||
overflow-y: auto;
|
||||
background-color: var(--models-background-color);
|
||||
border-radius: 2em;
|
||||
padding: 1em;
|
||||
height: 40vh;
|
||||
height: 90%;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.models {
|
||||
grid-column: 1/2;
|
||||
grid-row: 2/5;
|
||||
overflow-y: auto;
|
||||
background-color: var(--models-background-color);
|
||||
border-radius: 2em;
|
||||
padding: 1em;
|
||||
height: 100%;
|
||||
box-sizing: border-box;
|
||||
overflow: hidden;
|
||||
overflow-y: scroll;
|
||||
}
|
||||
|
||||
.models form {
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.models .titel {
|
||||
|
@ -134,14 +165,17 @@ header a:hover {
|
|||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
}
|
||||
|
||||
.grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
gap: 1.5vh;
|
||||
height: calc(100% - 2em);
|
||||
/* height: calc(100% - 2em); */
|
||||
}
|
||||
|
||||
.grid h3 {
|
||||
font-size: x-large;
|
||||
}
|
||||
|
||||
.model-box {
|
||||
|
@ -152,10 +186,12 @@ header a:hover {
|
|||
border-radius: 5%;
|
||||
overflow: hidden;
|
||||
position: relative;
|
||||
height: 20vh;
|
||||
height: 18vh;
|
||||
width: 18vh;
|
||||
margin: auto;
|
||||
}
|
||||
|
||||
.overlay{
|
||||
.overlay {
|
||||
z-index: 900;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
|
@ -171,10 +207,10 @@ header a:hover {
|
|||
transition: opacity 0.5s ease;
|
||||
pointer-events: none;
|
||||
opacity: 0;
|
||||
font-size:xx-large;
|
||||
font-size: xx-large;
|
||||
}
|
||||
|
||||
.model-box:hover .overlay{
|
||||
.model-box:hover .overlay {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
|
@ -210,7 +246,7 @@ header a:hover {
|
|||
/* Output Section */
|
||||
.output {
|
||||
grid-column: 2;
|
||||
grid-row: 1 / span 2;
|
||||
grid-row: 1 / 4;
|
||||
border-radius: 2em;
|
||||
background-color: var(--output-background-color);
|
||||
padding: 1.5em;
|
||||
|
@ -219,7 +255,7 @@ header a:hover {
|
|||
justify-content: flex-start;
|
||||
font-size: 1.2em;
|
||||
overflow-y: auto;
|
||||
max-height: 75vh;
|
||||
min-height: 75vh;
|
||||
margin-bottom: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
@ -232,9 +268,11 @@ header a:hover {
|
|||
padding: 10px;
|
||||
overflow-y: auto;
|
||||
max-height: 80vh;
|
||||
background-color: var(--output-background-color); /* Black background */
|
||||
background-color: var(--output-background-color);
|
||||
/* Black background */
|
||||
border-radius: 10px;
|
||||
scroll-behavior: smooth; /* Optional: Smooth scrolling */
|
||||
scroll-behavior: smooth;
|
||||
/* Optional: Smooth scrolling */
|
||||
}
|
||||
|
||||
.user-message,
|
||||
|
@ -243,9 +281,11 @@ header a:hover {
|
|||
padding: 10px 15px;
|
||||
border-radius: 15px;
|
||||
max-width: 60%;
|
||||
width: fit-content; /* Adjusts width to fit the content */
|
||||
width: fit-content;
|
||||
/* Adjusts width to fit the content */
|
||||
word-wrap: break-word;
|
||||
display: block; /* Changed from inline-block to block */
|
||||
display: block;
|
||||
/* Changed from inline-block to block */
|
||||
box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
|
@ -255,7 +295,8 @@ header a:hover {
|
|||
color: var(--text-color);
|
||||
border-bottom-right-radius: 0;
|
||||
margin-left: auto;
|
||||
text-align: right; /* Align text to the right */
|
||||
text-align: right;
|
||||
/* Align text to the right */
|
||||
}
|
||||
|
||||
/* Align AI message to the left */
|
||||
|
@ -264,7 +305,8 @@ header a:hover {
|
|||
color: var(--text-color);
|
||||
border-bottom-left-radius: 0;
|
||||
margin-right: auto;
|
||||
text-align: left; /* Align text to the left */
|
||||
text-align: left;
|
||||
/* Align text to the left */
|
||||
}
|
||||
|
||||
|
||||
|
@ -295,23 +337,23 @@ header a:hover {
|
|||
|
||||
/* Input Section */
|
||||
.input {
|
||||
grid-column: 2;
|
||||
grid-row: 3;
|
||||
border-radius: 2em;
|
||||
grid-column: 2/3;
|
||||
grid-row: 4/5;
|
||||
border-radius: 20px;
|
||||
background-color: var(--input-background-color);
|
||||
padding: 1em;
|
||||
padding: 1.5vh;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
height: auto;
|
||||
margin-top: -9em;
|
||||
/* margin-top: -9em; */
|
||||
gap: 10px;
|
||||
height: 7em;
|
||||
height: 10vh;
|
||||
}
|
||||
|
||||
.input input {
|
||||
flex-grow: 1;
|
||||
padding: 12px;
|
||||
padding: 5px;
|
||||
font-size: 1.2em;
|
||||
border-radius: 8px;
|
||||
border: 2px solid var(--input-button-color);
|
||||
|
@ -320,6 +362,7 @@ header a:hover {
|
|||
background-color: rgba(255, 255, 255, 0.9);
|
||||
color: #333;
|
||||
transition: border-color 0.3s ease-in-out;
|
||||
height: 7vh;
|
||||
}
|
||||
|
||||
.input input:focus {
|
||||
|
@ -327,7 +370,7 @@ header a:hover {
|
|||
}
|
||||
|
||||
.input button {
|
||||
padding:1em;
|
||||
padding: 1em;
|
||||
margin: 5px;
|
||||
background-color: var(--input-button-color);
|
||||
color: white;
|
||||
|
@ -396,10 +439,31 @@ header a:hover {
|
|||
transition: background-color 0.3s;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar {
|
||||
width: 7px;
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-track {
|
||||
background-color: var(--scrollbar-track);
|
||||
border-radius: 5px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
::-webkit-scrollbar-thumb {
|
||||
background-color: var(--scrollbar-thumb);
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
@media (max-width: 1400px) {
|
||||
.grid{
|
||||
.grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.model-box {
|
||||
width: 15vw;
|
||||
aspect-ratio: 1/1;
|
||||
}
|
||||
}
|
||||
|
||||
/* Responsive Adjustments */
|
||||
|
@ -410,8 +474,10 @@ header a:hover {
|
|||
width: 95vw;
|
||||
}
|
||||
|
||||
.history, .models {
|
||||
display: none; /* Hide history and models */
|
||||
.history,
|
||||
.models {
|
||||
display: none;
|
||||
/* Hide history and models */
|
||||
}
|
||||
|
||||
.output {
|
||||
|
@ -422,7 +488,7 @@ header a:hover {
|
|||
.input {
|
||||
grid-column: 1;
|
||||
grid-row: 3;
|
||||
margin-top: -4em;
|
||||
/* margin-top: -4em; */
|
||||
}
|
||||
|
||||
.input button {
|
||||
|
@ -433,4 +499,4 @@ header a:hover {
|
|||
.output form button img {
|
||||
height: 1.5em;
|
||||
}
|
||||
}
|
||||
}
|
Reference in a new issue