/ Published in: CSS
This is a userstyle (for the Stylish Firefox extension) that sets the default font on Flickr to Helvetica rather than Arial.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
@namespace url(http://www.w3.org/1999/xhtml); /* Flickr - Prefer Helvetica by Alex Bischoff 2008-04-18 */ @-moz-document domain("flickr.com") { body, input, textarea, select { /* This is normally set to "Arial, Helvetica, sans-serif" */ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important; } }