Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -113,103 +113,28 @@ with gr.Blocks(css='''
|
|
113 |
background: url('https://images.unsplash.com/photo-1514361726087-38371321b5cd?q=80&w=2370&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
|
114 |
}
|
115 |
.generate-button {
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
overflow: hidden; /* add this */
|
128 |
-
}
|
129 |
-
|
130 |
-
.generate-button:before {
|
131 |
-
content: "";
|
132 |
-
position: absolute;
|
133 |
-
top: 0;
|
134 |
-
left: 0;
|
135 |
-
width: 100%;
|
136 |
-
height: 100%;
|
137 |
-
background: linear-gradient(to right, #F0E68C, #E0FFFF, #FF6347);
|
138 |
-
transform: scaleX(0);
|
139 |
-
transform-origin: right;
|
140 |
-
transition: transform 0.3s ease;
|
141 |
-
z-index: -1; /* add this */
|
142 |
}
|
143 |
|
144 |
.generate-button:hover {
|
145 |
-
|
146 |
-
|
147 |
-
}
|
148 |
-
|
149 |
-
.generate-button:hover:before {
|
150 |
-
transform: scaleX(1);
|
151 |
}
|
152 |
|
153 |
.generate-button:active {
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
.generate-button:active:before {
|
158 |
-
transform: scaleX(0.9);
|
159 |
-
}
|
160 |
-
.mood-input {
|
161 |
-
position: relative;
|
162 |
-
font-size: 1.5em;
|
163 |
-
background: linear-gradient(21deg, #10abff, #1beabd);
|
164 |
-
padding: 3px;
|
165 |
-
display: inline-block;
|
166 |
-
border-radius: 9999em;
|
167 |
-
margin: 50px; /* Added to match your example */
|
168 |
-
}
|
169 |
-
.mood-input input {
|
170 |
-
position: relative;
|
171 |
-
display: inherit;
|
172 |
-
border-radius: inherit;
|
173 |
-
margin: 0;
|
174 |
-
border: none;
|
175 |
-
outline: none;
|
176 |
-
padding: 0 .325em;
|
177 |
-
z-index: 1;
|
178 |
-
font-family: inherit;
|
179 |
-
line-height: inherit;
|
180 |
-
color: #2e3750;
|
181 |
-
min-width: 12em; /* Adjusted to ensure consistency */
|
182 |
-
}
|
183 |
-
.mood-input span {
|
184 |
-
transform: scale(.993, .94);
|
185 |
-
transition: transform .5s, opacity .25s;
|
186 |
-
opacity: 0;
|
187 |
-
position: absolute;
|
188 |
-
z-index: 0;
|
189 |
-
margin: 4px;
|
190 |
-
left: 0;
|
191 |
-
top: 0;
|
192 |
-
right: 0;
|
193 |
-
bottom: 0;
|
194 |
-
border-radius: inherit;
|
195 |
-
pointer-events: none;
|
196 |
-
box-shadow: inset 0 0 0 3px #fff, 0 0 0 4px #fff, 3px -3px 30px #1beabd, -3px 3px 30px #10abff;
|
197 |
-
}
|
198 |
-
.mood-input input:focus + span {
|
199 |
-
opacity: 1;
|
200 |
-
transform: scale(1);
|
201 |
-
}
|
202 |
-
body {
|
203 |
-
text-align: center;
|
204 |
-
display: flex;
|
205 |
-
align-items: center;
|
206 |
-
justify-content: center;
|
207 |
-
height: 100%;
|
208 |
-
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
|
209 |
-
line-height: 1.5;
|
210 |
-
}
|
211 |
-
::placeholder {
|
212 |
-
color: #cbd0d5;
|
213 |
}
|
214 |
''') as demo:
|
215 |
|
@@ -220,13 +145,13 @@ with gr.Blocks(css='''
|
|
220 |
''')
|
221 |
|
222 |
with gr.Row():
|
223 |
-
mood = gr.HTML('''
|
224 |
-
<div class="mood-input">
|
225 |
-
|
226 |
-
|
227 |
-
</div>
|
228 |
-
''')
|
229 |
-
|
230 |
flavor_association = gr.CheckboxGroup(label="Flavor Association", choices=["Fruity", "Herbal", "Spicy", "Floral", "Nutty", "Woody", "Earthy"])
|
231 |
drinking_experience = gr.CheckboxGroup(label="Drinking Experience", choices=["Refreshing", "Warming", "Comforting", "Energizing", "Relaxing"])
|
232 |
|
@@ -300,22 +225,6 @@ with gr.Blocks(css='''
|
|
300 |
# )
|
301 |
|
302 |
|
303 |
-
# .generate-button {
|
304 |
-
# background: linear-gradient(to right, #F0E68C, #E0FFFF, #FF6347);
|
305 |
-
# color: black;
|
306 |
-
# padding: 10px 20px;
|
307 |
-
# border: none;
|
308 |
-
# border-radius: 5px;
|
309 |
-
# cursor: pointer;
|
310 |
-
# font-weight: bold;
|
311 |
-
# text-transform: uppercase;
|
312 |
-
# box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
313 |
-
# transition: all 0.3s ease;
|
314 |
-
# }
|
315 |
-
# .generate-button:hover {
|
316 |
-
# background: linear-gradient(to right, #E0FFFF, #FF6347, #F0E68C);
|
317 |
-
# box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
|
318 |
-
# }
|
319 |
|
320 |
if __name__ == "__main__":
|
321 |
demo.launch(#enable_queue=False,
|
|
|
113 |
background: url('https://images.unsplash.com/photo-1514361726087-38371321b5cd?q=80&w=2370&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
|
114 |
}
|
115 |
.generate-button {
|
116 |
+
background: linear-gradient(to right, #F0E68C, #E0FFFF, #FF6347);
|
117 |
+
color: black;
|
118 |
+
padding: 10px 20px;
|
119 |
+
border: none;
|
120 |
+
border-radius: 5px;
|
121 |
+
cursor: pointer;
|
122 |
+
font-weight: bold;
|
123 |
+
text-transform: uppercase;
|
124 |
+
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
|
125 |
+
transition: all 0.3s ease;
|
126 |
+
outline: none; /* Add this to remove the outline on focus for some browsers */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
}
|
128 |
|
129 |
.generate-button:hover {
|
130 |
+
background: linear-gradient(to right, #E0FFFF, #FF6347, #F0E68C);
|
131 |
+
box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
|
|
|
|
|
|
|
|
|
132 |
}
|
133 |
|
134 |
.generate-button:active {
|
135 |
+
box-shadow: 0 0 15px rgba(30, 255, 255, 0.5),
|
136 |
+
0 0 20px rgba(30, 255, 255, 0.5) inset; /* Creates the glowing effect */
|
137 |
+
transform: translateY(2px); /* Optional: Slightly push the button down */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
}
|
139 |
''') as demo:
|
140 |
|
|
|
145 |
''')
|
146 |
|
147 |
with gr.Row():
|
148 |
+
# mood = gr.HTML('''
|
149 |
+
# <div class="mood-input">
|
150 |
+
# <input type="text" class="gradio-textbox" label="Mood">
|
151 |
+
# <span></span>
|
152 |
+
# </div>
|
153 |
+
# ''')
|
154 |
+
mood = gr.Textbox(label="Mood", elem_classes=["mood-input"])
|
155 |
flavor_association = gr.CheckboxGroup(label="Flavor Association", choices=["Fruity", "Herbal", "Spicy", "Floral", "Nutty", "Woody", "Earthy"])
|
156 |
drinking_experience = gr.CheckboxGroup(label="Drinking Experience", choices=["Refreshing", "Warming", "Comforting", "Energizing", "Relaxing"])
|
157 |
|
|
|
225 |
# )
|
226 |
|
227 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
|
229 |
if __name__ == "__main__":
|
230 |
demo.launch(#enable_queue=False,
|