nesticot commited on
Commit
b9f6a60
1 Parent(s): ca79138

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -1
app.py CHANGED
@@ -161,6 +161,24 @@ from shiny import App, reactive, ui, render
161
  from shiny.ui import h2, tags
162
  # importing OpenCV(cv2) module
163
  app_ui = ui.page_fluid(
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  ui.layout_sidebar(
165
 
166
  ui.panel_sidebar(
@@ -225,7 +243,7 @@ app_ui = ui.page_fluid(
225
  ui.output_plot('plot_game',
226
  width='2000px',
227
  height='2000px'))
228
- ,id="my_tabs"))))
229
 
230
 
231
 
 
161
  from shiny.ui import h2, tags
162
  # importing OpenCV(cv2) module
163
  app_ui = ui.page_fluid(
164
+ ui.tags.div(
165
+ {"style": "width:90%;margin: 0 auto;max-width: 1600px;"},
166
+ ui.tags.style(
167
+ """
168
+ h4 {
169
+ margin-top: 1em;font-size:35px;
170
+ }
171
+ h2{
172
+ font-size:25px;
173
+ }
174
+ """
175
+ ),
176
+ shinyswatch.theme.simplex(),
177
+ ui.tags.h4("TJStats"),
178
+ ui.tags.i("Baseball Analytics and Visualizations"),
179
+ ui.row(
180
+
181
+
182
  ui.layout_sidebar(
183
 
184
  ui.panel_sidebar(
 
243
  ui.output_plot('plot_game',
244
  width='2000px',
245
  height='2000px'))
246
+ ,id="my_tabs"))))))
247
 
248
 
249