6 hours ago
(This post was last modified: 6 hours ago by TheDreadPirate. Edited 2 times in total.)
You can look at some of the work done in the Themes sub-forum to try to mimic what they've done.
https://forum.jellyfin.org/t-finimalism-theme-offline
The CSS for that theme.
https://raw.githubusercontent.com/tedhin...alism7.css
Importing the font. In this case from a URL, but can also be a local file.
Using the imported font.
https://forum.jellyfin.org/t-finimalism-theme-offline
The CSS for that theme.
https://raw.githubusercontent.com/tedhin...alism7.css
Importing the font. In this case from a URL, but can also be a local file.
Code:
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap');
Using the imported font.
Code:
body {
font-family: "Sofia Sans", sans-serif;
font-size: 12pt;
}