Update app.py
Browse files
app.py
CHANGED
@@ -30,6 +30,7 @@ def send_data(password, text):
|
|
30 |
|
31 |
css = """
|
32 |
footer {visibility: hidden !important;}
|
|
|
33 |
.dark {
|
34 |
--container-radius: 18px !important;
|
35 |
--block-border-width: 0px !important;
|
@@ -43,6 +44,7 @@ footer {visibility: hidden !important;}
|
|
43 |
--block-label-border-width: 0px !important;
|
44 |
--input-border-width: 0px !important;
|
45 |
}
|
|
|
46 |
.primary {
|
47 |
color: #FFF !important;
|
48 |
font-size: 16px !important;
|
@@ -69,6 +71,22 @@ div.svelte-19hvt5v {
|
|
69 |
.tab-nav.svelte-1uw5tnk {
|
70 |
border-bottom: 0px solid #510067 !important;
|
71 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
"""
|
73 |
|
74 |
with gr.Blocks(css=css) as demo:
|
|
|
30 |
|
31 |
css = """
|
32 |
footer {visibility: hidden !important;}
|
33 |
+
|
34 |
.dark {
|
35 |
--container-radius: 18px !important;
|
36 |
--block-border-width: 0px !important;
|
|
|
44 |
--block-label-border-width: 0px !important;
|
45 |
--input-border-width: 0px !important;
|
46 |
}
|
47 |
+
|
48 |
.primary {
|
49 |
color: #FFF !important;
|
50 |
font-size: 16px !important;
|
|
|
71 |
.tab-nav.svelte-1uw5tnk {
|
72 |
border-bottom: 0px solid #510067 !important;
|
73 |
}
|
74 |
+
.secondary {
|
75 |
+
color: #FFF !important;
|
76 |
+
font-size: 18px !important;
|
77 |
+
border: 3px solid rgb(96 55 103) !important;
|
78 |
+
border-radius: 20px !important;
|
79 |
+
transition: background-color 0.5s ease-in-out !important;
|
80 |
+
width: 100% !important;
|
81 |
+
background-color: transparent !important;
|
82 |
+
height: 50px !important;
|
83 |
+
font-weight: bold !important;
|
84 |
+
align-items: center !important;
|
85 |
+
justify-content: center !important;
|
86 |
+
}
|
87 |
+
.secondary:hover {
|
88 |
+
background-color: rgb(96 55 103);
|
89 |
+
}
|
90 |
"""
|
91 |
|
92 |
with gr.Blocks(css=css) as demo:
|