Follow up from #259.
Describe the bug
Using image-rendering: pixelated doesn't work on Firefox, but it's recommended on the home page.
To Reproduce
Look at the home page avatars on Firefox.
Expected behavior
It renders as pixelated.
Screenshots

Suggestion(s) for fixing this issue
Do something like this instead:
.pixelated {
image-rendering:optimizeSpeed; /* Legal fallback */
image-rendering:-moz-crisp-edges; /* Firefox */
image-rendering:-o-crisp-edges; /* Opera */
image-rendering:-webkit-optimize-contrast; /* Safari */
image-rendering:optimize-contrast; /* CSS3 Proposed */
image-rendering:crisp-edges; /* CSS4 Proposed */
image-rendering:pixelated; /* CSS4 Proposed */
-ms-interpolation-mode:nearest-neighbor; /* IE8+ */
}
For me it isn't quite that blurry but still antialiases.
I suspect rendering varies by platform and video drivers.
This issue looks like it will be fixed by PR https://github.com/nostalgic-css/NES.css/pull/446
Most helpful comment
This issue looks like it will be fixed by PR https://github.com/nostalgic-css/NES.css/pull/446