File size: 1,101 Bytes
83d9db1 7b4d90f 83d9db1 e5c497d 68aa355 83d9db1 7b4d90f 83d9db1 68aa355 83d9db1 7b4d90f 83d9db1 68aa355 83d9db1 68aa355 83d9db1 7b4d90f 9379c7d 7b4d90f 83d9db1 | 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 | /* style.css */
/* Container for textbox + button */
#input-container {
display: flex;
align-items: center;
width: 100%;
max-width: 600px;
margin: 0 auto;
border: 1px solid #ccc;
border-radius: 4px;
padding: 4px;
}
/* Textbox styling */
#chat-input {
flex: 1;
border: none !important;
box-shadow: none !important;
padding: 8px;
}
/* Updated, significantly narrower orange arrow button */
#ask-button {
background-color: #FF6F00 !important; /* Orange color */
color: white !important;
border: none !important;
border-radius: 4px;
cursor: pointer;
font-size: 10px; /* Smaller font size for the arrow */
width: 15px; /* Fixed width: adjust this value to change horizontal size */
height: 20px; /* Fixed height to ensure a neat appearance */
padding: 0; /* Remove extra horizontal padding */
margin-left: 4px; /* Small gap between textbox and button */
text-align: center; /* Center the arrow horizontally */
line-height: 20px; /* Vertically center the arrow within the button */
}
|