-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathui.R
38 lines (37 loc) · 1.05 KB
/
ui.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
fluidPage(
HTML('<meta name="viewport" content="width=1024">'),
div(
style = "font-weight: bold;font-size:38px;text-align:center;margin: 20px 0 20px 0;",
textOutput("titleText")
),
div(
style = "font-style: italic;font-size:18px;text-align:center;margin: 0px 0 0px 0;",
textOutput("subTitleText")
),
sidebarLayout(
div(
style = "margin-top: 50px",
sidebarPanel(
htmlOutput("leagueSelector"),
htmlOutput("plotSelector"),
htmlOutput("teamSelector"),
actionButton("showPlot", label = "Show Plot"),
div(
style = "font-style: italic;font-size:12px;text-align:center;margin: 10px 0 10px 0;",
textOutput("sideNote")
),
)
),
mainPanel(
plotOutput("plot"),
div(
style = "font-style: italic;font-size:12px;text-align:center;margin: 10px 0 10px 0;",
textOutput("aboutNote")
)
)
),
div(
style = "font-style: italic;font-size:18px;text-align:center;margin: 20px 0 20px 0;",
textOutput("footerText")
)
)