Spaces:
Runtime error
Runtime error
Commit
·
ef2021d
1
Parent(s):
3b8dc0a
added css
Browse files
app.py
CHANGED
@@ -20,7 +20,19 @@ def transcript_generator(link,option):
|
|
20 |
|
21 |
return transcript,translation
|
22 |
|
23 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
24 |
|
25 |
|
26 |
input1 = gr.Textbox(label="Enter YouTube Link",value='',lines=1)
|
|
|
20 |
|
21 |
return transcript,translation
|
22 |
|
23 |
+
css = """
|
24 |
+
footer {display:none !important}
|
25 |
+
.output-markdown{display:none !important}
|
26 |
+
footer {visibility: hidden}
|
27 |
+
#component-4 textarea[data-testid="textbox"] { height: 178px !important}
|
28 |
+
.max-h-[30rem] {max-height: 18rem !important;}
|
29 |
+
.hover\:bg-orange-50:hover {
|
30 |
+
--tw-bg-opacity: 1 !important;
|
31 |
+
background-color: rgb(229,225,255) !important;
|
32 |
+
}
|
33 |
+
"""
|
34 |
+
|
35 |
+
with gr.Blocks(title="Wikipedia Article Scrape | Data Science Dojo", css = css) as demo:
|
36 |
|
37 |
|
38 |
input1 = gr.Textbox(label="Enter YouTube Link",value='',lines=1)
|