我想将我的Valuebox的标题的字体系列更改为 Nexa Bold ,将值框的字幕更改为 Fs Albert 。我知道这个字体系列是非标准的,所以我应该在css文件中写什么,因为我是HTML和CSS的初学者。
谢谢
这是一个可重现的例子
require(shiny)
require(shinydashboard)
header <- dashboardHeader(title="ReproductibleExample")
sidebar <- dashboardSidebar(disable=T)
body <- dashboardBody(
includeCSS("C:/Users/Ccic/Shiny Interface Beta 06_04_2017/Dahsborad/www/custom.css"),
tags$head(
tags$link(rel = "stylesheet", type = "text/css", href = "custom.css")
),
valueBoxOutput("box_01"),
textOutput("print"))
ui <- dashboardPage(header, sidebar, body)
server<-shinyServer(function(input, output,session) {
output$box_01=renderValueBox({
valueBox("Probability ","80%",
icon("glyphicon glyphicon-oil", lib="glyphicon"), color = "red" )
})
})
shinyApp(ui,server)
这是我的css文件:
.box.box-solid.box-success>.box-header {
font-family: 'Nexa Bold', sans-serif;
color:#fff;
background:#586F7C
}
.box.box-solid.box-success{
border-bottom-color:#586F7C;
border-left-color:#586F7C;
border-right-color:#586F7C;
border-top-color:#586F7C;
}
.small-box.bg-red { background-color: #AEB4A9 !important; color: #FFFFFF !important; }
但它对我不起作用!