Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -104,22 +104,44 @@ footer {visibility: hidden}
|
|
104 |
border-radius: 8px;
|
105 |
background-color: #f8f9fa;
|
106 |
}
|
107 |
-
|
108 |
-
|
|
|
109 |
color: black !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
110 |
}
|
111 |
.gr-examples * {
|
112 |
color: black !important;
|
|
|
113 |
}
|
114 |
.gr-prose {
|
115 |
color: black !important;
|
|
|
116 |
}
|
117 |
.gr-prose * {
|
118 |
color: black !important;
|
|
|
119 |
}
|
120 |
-
|
121 |
-
color: black !important;
|
122 |
-
}
|
123 |
#main-output {
|
124 |
height: 500px !important;
|
125 |
width: 100% !important;
|
@@ -144,6 +166,18 @@ footer {visibility: hidden}
|
|
144 |
border-radius: 7px;
|
145 |
transition: width 0.5s ease-out;
|
146 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
147 |
"""
|
148 |
|
149 |
with gr.Blocks(theme="Yntec/HaleyCH_Theme_Orange", css=css) as demo:
|
|
|
104 |
border-radius: 8px;
|
105 |
background-color: #f8f9fa;
|
106 |
}
|
107 |
+
|
108 |
+
/* Examples ์คํ์ผ ์์ */
|
109 |
+
.gr-samples-table {
|
110 |
color: black !important;
|
111 |
+
background: transparent !important;
|
112 |
+
}
|
113 |
+
.gr-samples-table * {
|
114 |
+
color: black !important;
|
115 |
+
background: transparent !important;
|
116 |
+
}
|
117 |
+
.gr-button.gr-button-lg {
|
118 |
+
color: black !important;
|
119 |
+
background: transparent !important;
|
120 |
+
border: none !important;
|
121 |
+
box-shadow: none !important;
|
122 |
+
}
|
123 |
+
.gr-button.gr-button-lg:hover {
|
124 |
+
background: rgba(0,0,0,0.05) !important;
|
125 |
+
}
|
126 |
+
.gr-examples-table {
|
127 |
+
background: transparent !important;
|
128 |
+
}
|
129 |
+
.gr-examples {
|
130 |
+
background: transparent !important;
|
131 |
}
|
132 |
.gr-examples * {
|
133 |
color: black !important;
|
134 |
+
background: transparent !important;
|
135 |
}
|
136 |
.gr-prose {
|
137 |
color: black !important;
|
138 |
+
background: transparent !important;
|
139 |
}
|
140 |
.gr-prose * {
|
141 |
color: black !important;
|
142 |
+
background: transparent !important;
|
143 |
}
|
144 |
+
|
|
|
|
|
145 |
#main-output {
|
146 |
height: 500px !important;
|
147 |
width: 100% !important;
|
|
|
166 |
border-radius: 7px;
|
167 |
transition: width 0.5s ease-out;
|
168 |
}
|
169 |
+
|
170 |
+
/* ์ถ๊ฐ์ ์ธ Examples ์คํ์ผ */
|
171 |
+
.example-text {
|
172 |
+
color: black !important;
|
173 |
+
background: transparent !important;
|
174 |
+
}
|
175 |
+
.example-container {
|
176 |
+
background: transparent !important;
|
177 |
+
}
|
178 |
+
.selectable-example {
|
179 |
+
background: transparent !important;
|
180 |
+
}
|
181 |
"""
|
182 |
|
183 |
with gr.Blocks(theme="Yntec/HaleyCH_Theme_Orange", css=css) as demo:
|