attempt to kill antialiasing
This commit is contained in:
parent
e6af0325b6
commit
69ab0e5cb2
1 changed files with 11 additions and 0 deletions
|
|
@ -13,4 +13,15 @@ $breakpoint: 768px;
|
|||
max-width: 802px;
|
||||
margin: 8px auto;
|
||||
border: 1px solid mp.$border;
|
||||
|
||||
/* DEATH TO ANTIALIASING */
|
||||
img, .header-banner, #nav-hover {
|
||||
image-rendering: optimizeSpeed; /* STOP SMOOTHING, GIVE ME SPEED */
|
||||
image-rendering: -moz-crisp-edges; /* Firefox */
|
||||
image-rendering: -o-crisp-edges; /* Opera */
|
||||
image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
|
||||
image-rendering: pixelated; /* Universal support since 2021 */
|
||||
image-rendering: optimize-contrast; /* CSS3 Proposed */
|
||||
-ms-interpolation-mode: nearest-neighbor; /* IE8+ */
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue