Spaces:
Running
Running
File size: 2,416 Bytes
94d96f3 |
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 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 |
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #000000;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-size: cover;
background-position: center;
color: #f3eded;
}
.chat-container {
width: 400px;
background-color: #000000;
box-shadow: 0 4px 20px rgba(198, 118, 255, 0.5);
border-radius: 15px;
overflow: hidden;
display: flex;
flex-direction: column;
}
#chatbox {
padding: 20px;
max-height: 400px;
overflow-y: auto;
border-bottom: 1px solid #b582eb;
background-color: #140d1d;
}
.bot-message, .user-message {
margin: 10px 0;
padding: 15px;
border-radius: 10px;
display: flex;
align-items: center;
}
.bot-message {
background-color: #461d5f;
color: #f0def9;
text-align: left;
}
.user-message {
background-color: #b586ec;
color: rgb(255, 255, 255);
text-align: right;
align-self: flex-end;
}
.bot-message img, .user-message img {
width: 30px;
height: 30px;
margin-right: 10px;
}
.input-container {
display: flex;
align-items: center;
background-color: #000000;
padding: 10px;
border-top: 1px solid #000000;
}
input[type="text"] {
width: 70%; /* Increased width for question input */
padding: 10px;
background-color: #000000;
color: #ffffff;
border: none;
border-radius: 5px;
font-size: 16px;
margin-right: 10px;
}
input[type="file"] {
width: 20%; /* Adjust the width of the file input */
padding: 5px;
background-color: #000000;
color: #ffffff;
border: none;
font-size: 14px;
cursor: pointer;
margin-right: 10px;
}
select#model {
width: 20%; /* Decreased width for model dropdown */
padding: 10px;
background-color: #000000;
color: #ffffff;
border: none;
font-size: 14px;
margin-right: 10px;
}
select#complexity {
width: 10%; /* Adjusted width for complexity dropdown */
padding: 10px;
background-color: #000000;
color: #ffffff;
border: none;
font-size: 14px;
margin-right: 10px;
}
button {
width: 20%;
padding: 10px;
background-color: #000105;
color: white;
border: none;
cursor: pointer;
font-size: 16px;
border-radius: 5px;
}
button:hover {
background-color: #45265e;
}
|