Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -38,34 +38,35 @@ css=""""""
|
|
38 |
|
39 |
|
40 |
with gr.Blocks(css=css) as myface:
|
|
|
41 |
gr.HTML("""
|
42 |
<div style="text-align: center; max-width: 1200px; margin: 0 auto;">
|
43 |
<div>
|
44 |
<style>
|
45 |
h1 {
|
46 |
font-size: 6em;
|
47 |
-
color: #ffffff;
|
48 |
margin-top: 30px;
|
49 |
margin-bottom: 30px;
|
50 |
text-shadow: 3px 3px 0 rgba(0, 0, 0, 1) !important;
|
51 |
}
|
52 |
h4 {
|
53 |
-
color: #
|
54 |
}
|
55 |
h3 {
|
56 |
-
color: #ffffff; !important;
|
57 |
}
|
58 |
.gradio-container {
|
59 |
-
background-image: linear-gradient(#000000, #000000, #000000) !important; /* Schwarz
|
60 |
-
color: #
|
61 |
font-family: 'IBM Plex Sans', sans-serif !important;
|
62 |
}
|
63 |
.text-gray-500 {
|
64 |
-
color: #
|
65 |
}
|
66 |
.gr-box {
|
67 |
-
color: #
|
68 |
-
background-image: linear-gradient(#000000, #000000, #000000) !important; /* Schwarz
|
69 |
border-top-color: #000000 !important;
|
70 |
border-right-color: #ffffff !important;
|
71 |
border-bottom-color: #ffffff !important;
|
@@ -76,14 +77,14 @@ with gr.Blocks(css=css) as myface:
|
|
76 |
<div class="center"><h1>ToyWorld XL</h1></div>
|
77 |
</body>
|
78 |
</div>
|
79 |
-
<p style="margin-bottom: 10px; color: #
|
80 |
<h3>SDXL models for your enjoyment!</h3>
|
81 |
</p>
|
82 |
<p style="margin-bottom: 10px; font-size: 98%">
|
83 |
<br><h4><a href="https://huggingface.co/spaces/Yntec/ToyWorld"><u><b>Try out more than 560 Stable Diffusion models at Toy World by clicking here!</b></u></a></h4>
|
84 |
</p>
|
85 |
</div>
|
86 |
-
|
87 |
with gr.Row():
|
88 |
with gr.Column(scale=100):
|
89 |
#Model selection dropdown
|
|
|
38 |
|
39 |
|
40 |
with gr.Blocks(css=css) as myface:
|
41 |
+
|
42 |
gr.HTML("""
|
43 |
<div style="text-align: center; max-width: 1200px; margin: 0 auto;">
|
44 |
<div>
|
45 |
<style>
|
46 |
h1 {
|
47 |
font-size: 6em;
|
48 |
+
color: #ffffff; /* Weiß */
|
49 |
margin-top: 30px;
|
50 |
margin-bottom: 30px;
|
51 |
text-shadow: 3px 3px 0 rgba(0, 0, 0, 1) !important;
|
52 |
}
|
53 |
h4 {
|
54 |
+
color: #000000; !important; /* Schwarz statt Gelb */
|
55 |
}
|
56 |
h3 {
|
57 |
+
color: #ffffff; !important; /* Weiß */
|
58 |
}
|
59 |
.gradio-container {
|
60 |
+
background-image: linear-gradient(#000000, #000000, #000000) !important; /* Schwarz */
|
61 |
+
color: #ffffff !important; /* Weiß */
|
62 |
font-family: 'IBM Plex Sans', sans-serif !important;
|
63 |
}
|
64 |
.text-gray-500 {
|
65 |
+
color: #ffffff !important; /* Weiß */
|
66 |
}
|
67 |
.gr-box {
|
68 |
+
color: #ffffff !important; /* Weiß */
|
69 |
+
background-image: linear-gradient(#000000, #000000, #000000) !important; /* Schwarz */
|
70 |
border-top-color: #000000 !important;
|
71 |
border-right-color: #ffffff !important;
|
72 |
border-bottom-color: #ffffff !important;
|
|
|
77 |
<div class="center"><h1>ToyWorld XL</h1></div>
|
78 |
</body>
|
79 |
</div>
|
80 |
+
<p style="margin-bottom: 10px; color: #000000;"> <!-- Schwarz statt Gelb -->
|
81 |
<h3>SDXL models for your enjoyment!</h3>
|
82 |
</p>
|
83 |
<p style="margin-bottom: 10px; font-size: 98%">
|
84 |
<br><h4><a href="https://huggingface.co/spaces/Yntec/ToyWorld"><u><b>Try out more than 560 Stable Diffusion models at Toy World by clicking here!</b></u></a></h4>
|
85 |
</p>
|
86 |
</div>
|
87 |
+
""")
|
88 |
with gr.Row():
|
89 |
with gr.Column(scale=100):
|
90 |
#Model selection dropdown
|