Files
jellyfin-web/src/assets/css/fonts.css
T
MrTimscampi 45cd976b49 Fix font sizes
Makes the baseline 16px again (It was 14.88px before, for some reason) and sets the TV baseline to 20px.
2020-08-26 19:30:01 +02:00

38 lines
597 B
CSS

html {
font-family: "Noto Sans", sans-serif;
text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
}
h1,
h2,
h3 {
font-family: "Noto Sans", sans-serif;
}
h1 {
font-weight: 400;
font-size: 1.8em;
}
h2 {
font-weight: 400;
font-size: 1.5em;
}
h3 {
font-weight: 400;
font-size: 1.17em;
}
.layout-tv {
/* Per WebOS and Tizen guidelines, fonts must be 20px minimum.
This takes the 16px baseline and multiplies it by 1.25 to get 20px. */
font-size: 125%;
}
.layout-mobile {
font-size: 90%;
}