Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -114,9 +114,16 @@ with gr.Blocks(css='style.css') as demo:
|
|
114 |
<div style="text-align: center; max-width: 1200px; margin: 0 auto;">
|
115 |
<div>
|
116 |
<style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
h1 {
|
118 |
font-size: 6em;
|
119 |
-
color: #
|
120 |
position: absolute;
|
121 |
margin: 0;
|
122 |
padding: 0;
|
@@ -131,8 +138,10 @@ with gr.Blocks(css='style.css') as demo:
|
|
131 |
transform: skewX(-50deg)
|
132 |
}
|
133 |
</style>
|
134 |
-
<
|
135 |
-
</h1>
|
|
|
|
|
136 |
</div>
|
137 |
<p style="margin-bottom: 10px; color: #ffaa66;">
|
138 |
Noise Level: Controls how much randomness is added to the input of the boxes after the first one before it is sent to the model, so you can get 6 unique 768x768 images. Higher noise level produces more diverse outputs, while lower noise level produces similar outputs,
|
|
|
114 |
<div style="text-align: center; max-width: 1200px; margin: 0 auto;">
|
115 |
<div>
|
116 |
<style>
|
117 |
+
body {
|
118 |
+
font-family: Arial, Helvetica, sans-serif;
|
119 |
+
background: rgb(122, 116, 116);
|
120 |
+
}
|
121 |
+
.center {
|
122 |
+
margin: 200px 0 0 350px;
|
123 |
+
}
|
124 |
h1 {
|
125 |
font-size: 6em;
|
126 |
+
color: #000000;
|
127 |
position: absolute;
|
128 |
margin: 0;
|
129 |
padding: 0;
|
|
|
138 |
transform: skewX(-50deg)
|
139 |
}
|
140 |
</style>
|
141 |
+
<body>
|
142 |
+
<div class="center"><h1> DreamAnything</h1>
|
143 |
+
</div>
|
144 |
+
</body>
|
145 |
</div>
|
146 |
<p style="margin-bottom: 10px; color: #ffaa66;">
|
147 |
Noise Level: Controls how much randomness is added to the input of the boxes after the first one before it is sent to the model, so you can get 6 unique 768x768 images. Higher noise level produces more diverse outputs, while lower noise level produces similar outputs,
|