File size: 2,302 Bytes
46f8a04 | 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 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | body
{
font-family: Arial;
background: #f4f4f4;
margin: 40px;
}
h1
{
text-align: center;
}
#authSection
{
background: white;
padding: 20px;
width: 400px;
margin: auto;
border-radius: 8px;
}
#mainApp
{
margin-top: 30px;
}
input
{
width: 100%;
padding: 10px;
margin-top: 10px;
font-size: 18px; /* π₯ increase input text size */
}
button
{
padding: 10px;
margin-top: 10px;
cursor: pointer;
}
#chatWindow
{
height: 400px;
background: white;
overflow-y: auto;
padding: 10px;
border-radius: 8px;
}
.userMessage
{
text-align:left;
color:blue;
margin:5px;
font-family:Calibri;
font-size:28px;
}
.botMessage
{
text-align: left;
color:black;
margin:5px;
font-family:Arial;
font-size:20px;
}
#chatControls
{
margin-top: 10px;
display: flex;
gap: 10px;
}
#chatControls
{
margin-top: 10px;
display: flex;
gap: 10px;
}
/* ===== Reference checkbox alignment fix ===== */
.ref-section
{
display: flex;
align-items: center;
gap: 20px;
margin-top: 25px; /* π₯ move downward */
flex-wrap: nowrap; /* π₯ force single row */
}
.ref-section label
{
display: flex;
align-items: center;
gap: 8px;
white-space: nowrap; /* ===== Prevent label text from wrapping ===== */
}
/* ===== Fine-tune checkbox vertical position ===== */
.ref-section input[type="checkbox"]
{
margin: 0;
transform: translateY(-1px); /* π₯ move checkbox UP */
}
.model-row
{
display: flex;
gap: 10px;
align-items: center; /* π₯ fix alignment */
margin-top: -15px;
}
.model-row select
{
width: 250px; /* π₯ fixed reasonable width */
height: 36px; /* π₯ controls actual height */
font-size: 16px;
}
.model-row button
{
height: 36px;
padding: 0 15px;
white-space: nowrap;
display: flex; /* π₯ important */
align-items: center; /* π₯ vertical centering */
}
/* ===== Fine-tune dropdown vertical position ===== */
#modelSelect
{
transform: translateY(2px); /* π₯ move DOWN */
}
/* ===== Slightly bigger checkbox ===== */
.ref-section input[type="checkbox"]
{
transform: scale(1.5); /* π₯ increase size */
margin: 0;
} |