Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -139,7 +139,7 @@ with gr.Blocks(css='''
|
|
139 |
background: white; /* White background */
|
140 |
color: #333; /* Text color */
|
141 |
padding: 10px; /* Padding inside the input */
|
142 |
-
border:
|
143 |
border-color: #FFDA42
|
144 |
border-radius: 5px; /* Rounded corners */
|
145 |
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
|
@@ -147,7 +147,7 @@ with gr.Blocks(css='''
|
|
147 |
}
|
148 |
|
149 |
.custom-input2:focus {
|
150 |
-
border-color: #
|
151 |
box-shadow: 0 0 8px rgba(240, 230, 140, 0.8); /* Glow effect on focus */
|
152 |
}
|
153 |
|
|
|
139 |
background: white; /* White background */
|
140 |
color: #333; /* Text color */
|
141 |
padding: 10px; /* Padding inside the input */
|
142 |
+
border: 20px solid #FFDA42; /* Initial border color, change as needed */
|
143 |
border-color: #FFDA42
|
144 |
border-radius: 5px; /* Rounded corners */
|
145 |
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
|
|
|
147 |
}
|
148 |
|
149 |
.custom-input2:focus {
|
150 |
+
border-color: #FFDA42; /* Highlight color when the input is focused */
|
151 |
box-shadow: 0 0 8px rgba(240, 230, 140, 0.8); /* Glow effect on focus */
|
152 |
}
|
153 |
|