jschwab21 commited on
Commit
de9023a
·
verified ·
1 Parent(s): 2685d1d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -37,7 +37,6 @@ class CustomTheme(Base):
37
  )
38
  super().set(
39
  body_background_fill="radial-gradient(#eb5726 1px, transparent 1px)",
40
- #body_background_size="10px 10px",
41
  body_text_color="#282828",
42
  block_background_fill="#ffffff",
43
  block_title_text_color="#eb5726",
@@ -89,15 +88,21 @@ h3 {
89
  }
90
  .centered-markdown {
91
  text-align: center;
 
 
 
 
 
 
92
  }
93
  """
94
 
95
  with gr.Blocks(theme=custom_theme, css=css) as demo:
96
  with gr.Column():
97
- gr.Markdown("# Sickstadium AI", elem_classes="centered-markdown")
98
  gr.Markdown("### Upload your videos. Find sick clips. Tell your truth.", elem_classes="centered-markdown")
99
  gr.Markdown("Welcome to Sickstadium AI. Our goal is to empower content creators with the ability to tell their stories without the friction of traditional video editing software.", elem_classes="centered-markdown")
100
- gr.Markdown("Skip the timeline, and don't worry about your experience in video editing. Upload your video, explain the clip you want, and let our AI do the dirty work.", elem_classes="centered-markdown")
101
  video_url = gr.Textbox(label="Video URL or Filepath", elem_id="video_url")
102
  description = gr.Textbox(label="Description of desired clip", elem_id="description")
103
  submit_button = gr.Button("Process Video", elem_id="submit_button")
 
37
  )
38
  super().set(
39
  body_background_fill="radial-gradient(#eb5726 1px, transparent 1px)",
 
40
  body_text_color="#282828",
41
  block_background_fill="#ffffff",
42
  block_title_text_color="#eb5726",
 
88
  }
89
  .centered-markdown {
90
  text-align: center;
91
+ background-color: #ffffff;
92
+ padding: 10px;
93
+ }
94
+ #sickstadium-title {
95
+ font-size: 2em !important;
96
+ font-weight: bold;
97
  }
98
  """
99
 
100
  with gr.Blocks(theme=custom_theme, css=css) as demo:
101
  with gr.Column():
102
+ gr.Markdown("# Sickstadium AI", elem_classes="centered-markdown", elem_id="sickstadium-title")
103
  gr.Markdown("### Upload your videos. Find sick clips. Tell your truth.", elem_classes="centered-markdown")
104
  gr.Markdown("Welcome to Sickstadium AI. Our goal is to empower content creators with the ability to tell their stories without the friction of traditional video editing software.", elem_classes="centered-markdown")
105
+ gr.Markdown("**Skip the timeline, and don't worry about your experience in video editing. Upload your video, explain the clip you want, and let our AI do the dirty work.**", elem_classes="centered-markdown")
106
  video_url = gr.Textbox(label="Video URL or Filepath", elem_id="video_url")
107
  description = gr.Textbox(label="Description of desired clip", elem_id="description")
108
  submit_button = gr.Button("Process Video", elem_id="submit_button")