Im building on a new display with Dashticz.
My old display is based on the standaard www frontpage.html
I want to change the standard font to Orbitron (fonts.googleapis.com/css?family=Orbitron:700')
Can anybody help me to point out how i do that?
Here a part of the frontpage hmtl
Code: Select all
<title>Domoticz Monitor</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link rel="shortcut icon" href="/favicon.ico" />
<link rel="apple-touch-icon" href="images/touch-icon-iphone.png">
<link href='http://fonts.googleapis.com/css?family=Orbitron:700'
<link href='http://fonts.googleapis.com/css?family=Arimo' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Open+Sans:600' rel='stylesheet' type='text/css'>
Code: Select all
#cell5,
#cell12,
#cell19
{
font-family: Orbitron, serif;
font-weight: bold;
width: 500px;
padding: 1px;
border: 1px solid #333;
border-radius: 5px;
background-color: #070707;
height: 160px;
line-height: 160px;
font-size: 160px;
color: darkorange; //Kleur waardes van cellen
}
Code: Select all
.block_270 .value {
font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
font-weight: 900;
font-size: 50px !important;
text-align: top !important;
color: Orange !important;
}
.block_270 .title {
font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
font-weight: 900;
font-size: 90px !important;
text-align: top !important;
color: Orange !important;