ferrariedhgs commited on
Commit
e4d9406
Β·
verified Β·
1 Parent(s): 84c5aa2

Upload 2 files

Browse files
Files changed (2) hide show
  1. app.py +1 -1
  2. custom_styles.py +12 -1
app.py CHANGED
@@ -456,7 +456,7 @@ with gr.Blocks(title="1000 Rooms") as demo:
456
 
457
  <div style="font-family:'IM Fell English',sans-serif;font-size:1rem;
458
  color:#c47c1a;letter-spacing:0.2em;">
459
- The generation takes a long time: ~ 5 minutes on ZeroGPU
460
  </div>
461
  </div>
462
  """)
 
456
 
457
  <div style="font-family:'IM Fell English',sans-serif;font-size:1rem;
458
  color:#c47c1a;letter-spacing:0.2em;">
459
+ The generation takes a long time: ~ 2 minutes on ZeroGPU
460
  </div>
461
  </div>
462
  """)
custom_styles.py CHANGED
@@ -10,7 +10,7 @@ CSS = """
10
  --glow: rgba(232,168,50,0.25);
11
  --border: #d4b896;
12
  --text: #c9b89e;
13
- --dim: #4a9f8f;
14
  --mono: 'IM Fell English', monospace;
15
  --hud: 'Cinzel Decorative';
16
  }
@@ -67,6 +67,7 @@ textarea:focus, input[type=text]:focus {
67
  height: 400px !important;
68
  min-height: 400px !important;
69
  resize: none !important;
 
70
  }
71
 
72
  /* ── Dropdown / listbox ── */
@@ -211,6 +212,16 @@ div[data-testid="image"], .image-container, .thumbnail-item img {
211
  #listbox label:hover { background: rgba(0,255,204,0.07) !important; }
212
  #listbox input[type=checkbox] { accent-color: var(--accent) !important; }
213
 
 
 
 
 
 
 
 
 
 
 
214
  /* ── HUD label ── */
215
  .hud { font-family: var(--hud) !important; font-size: 0.55rem; letter-spacing: 0.2em;
216
  color: var(--dim) !important; text-transform: uppercase; margin-bottom: 2px; }
 
10
  --glow: rgba(232,168,50,0.25);
11
  --border: #d4b896;
12
  --text: #c9b89e;
13
+ --dim: #c47c1a;
14
  --mono: 'IM Fell English', monospace;
15
  --hud: 'Cinzel Decorative';
16
  }
 
67
  height: 400px !important;
68
  min-height: 400px !important;
69
  resize: none !important;
70
+ background: var(--bg2);
71
  }
72
 
73
  /* ── Dropdown / listbox ── */
 
212
  #listbox label:hover { background: rgba(0,255,204,0.07) !important; }
213
  #listbox input[type=checkbox] { accent-color: var(--accent) !important; }
214
 
215
+ .selection-display {
216
+ background: var(--bg2);
217
+ }
218
+
219
+ #narration-audio {
220
+ width: 1px !important;
221
+ height: 1px !important;
222
+ overflow: hidden !important;
223
+ }
224
+
225
  /* ── HUD label ── */
226
  .hud { font-family: var(--hud) !important; font-size: 0.55rem; letter-spacing: 0.2em;
227
  color: var(--dim) !important; text-transform: uppercase; margin-bottom: 2px; }