How do I modify the font and size of a title, as well as add some spacing between the title and other elements?
navbar <- navbarPage(
Title = "Intervals",
tabPanel("Data Import",
sidebarLayout(sidebarPanel(fileInput("file", "Upload your CSV", multiple = FALSE),
tags$hr(),
h5(helpText("Select the read.table parameters below")),
checkboxInput(inputId = 'header', label = 'Header', value = FALSE),
checkboxInput(inputId = "stringAsFactors", label = "stringAsFactors", value = FALSE),
radioButtons(inputId = 'sep', label = 'Separator',
choices = c(Comma = ',', Semicolon = ';', Tab = '\t', Space = ''), selected = ',')
),
mainPanel(uiOutput("tb1"))
)
),
tabPanel("95% Continious RI",
sidebarLayout(sidebarPanel(
uiOutput("model_select"),
uiOutput("var1_select"),
uiOutput("rest_var_select")
),
mainPanel(helpText("Selected variables and Fitted values"),
verbatimTextOutput("other_val_show")))),
tabPanel("Model Summary", verbatimTextOutput("summary")),
tabPanel("Scatterplot", plotOutput("scatterplot")))