Spaces:
Running
Running
File size: 1,534 Bytes
36784c4 407ff24 36784c4 407ff24 36784c4 407ff24 36784c4 407ff24 36784c4 407ff24 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 |
body,
html {
font-family: Arial, sans-serif;
padding: 10px 20px;
}
.download-container {
display: flex;
justify-content: space-between;
margin-bottom: 20px;
}
#download-status {
border: solid 1px black;
box-shadow:
0 10px 15px -3px rgba(0, 0, 0, 0.1),
0 4px 6px -2px rgba(0, 0, 0, 0.05);
padding: 10px;
}
.chat-container {
height: 400px;
width: 100%;
border: 2px solid black;
display: flex;
flex-direction: column;
}
.chat-box {
overflow-y: scroll;
background-color: #c3c3c3;
border: 1px solid #ccc;
padding: 5px;
flex: 1 1;
}
.chat-stats {
background-color: #d3eceb;
flex: 0 0;
padding: 10px;
font-size: 0.75rem;
}
.message-container {
width: 100%;
display: flex;
}
.message {
padding: 10px;
margin: 10px 0;
border-radius: 10px;
width: fit-content;
}
.message-container.user {
justify-content: end;
}
.message-container.assistant {
justify-content: start;
}
.message-container.user .message {
background: #007bff;
color: #fff;
}
.message-container.assistant .message {
background: #f1f0f0;
color: #333;
}
.chat-input-container {
min-height: 40px;
flex: 0 0;
display: flex;
}
#user-input {
width: 70%;
padding: 10px;
border: 1px solid #ccc;
}
button {
width: 25%;
padding: 10px;
border: none;
background-color: #007bff;
color: white;
cursor: pointer;
}
button:disabled {
background-color: lightgray;
cursor: not-allowed;
}
button:hover:not(:disabled) {
background-color: #0056b3;
}
.hidden {
display: none;
}
|