I want to change the font-family of only one website, live.com, however, using the method of the "style sheet" only changes fonts on everything Safari browses.
"Style sheet" is the function in the "advanced" preferences, creating a text file and setting its extension to ".css".
I tried to use @-moz-document domain("live.com") and :root[location*="live.com", among others, at the beginning of my code, but it failed to change the fonts of the elements inside the website.
So, for example:
@-moz-document domain("live.com")
{
a, body, button, div, form, html, span, textarea
{
font-family: monospace;
}
}
couldn't work. If I didn't include the top line and the bottom }, it will be applied to any website I visit, not restricted to the domain, live.com.
Is it possible to do my wish? I reached out to the Apple support who eventually redirected me to you.
I'll be very grateful to find a solution as a I failed to find such through my own research.
Thank you.