- official logo in ifferent versions
#242A53
#245B62
#63CB9D
#659CC3
#96E452
Role | Font |
---|---|
Highlight | Poppins Font |
Paragraph | IBM Plex Sans |
// css
h1, h2, h3, h4, h5 {
font-family: 'Poppins', sans-serif;
}
@media screen {
h1 {
font-size: 48px;
}
h2 {
font-size: 40px;
}
h3 {
font-size: 32px;
}
h4 {
font-size: 24px;
}
h5 {
font-size: 20px;
}
}
@media print {
h1 {
font-size: 48pt;
}
h2 {
font-size: 40pt;
}
h3 {
font-size: 32pt;
}
h4 {
font-size: 24pt;
}
h5 {
font-size: 20pt;
}
}
// css
p {
font-family: 'IBM Plex Sans', sans-serif;
}
@media screen {
p {
font-size: 14px;
}
}
@media print {
h1 {
font-size: 14pt;
}
}