diff --git a/server/src/uds/static/css/uds-html5.css b/server/src/uds/static/css/uds-html5.css
index c333b2e01..cc1cc6e9b 100644
--- a/server/src/uds/static/css/uds-html5.css
+++ b/server/src/uds/static/css/uds-html5.css
@@ -13,7 +13,7 @@ body {
height: auto !important;
height: 100%;
margin: 0 auto -40px; /* Change height. Can use px, ems or % */
-
+
@media (min-width: 768px) {
margin: 0 auto -24px; /* Change height. Can use px, ems or % */
}
@@ -22,7 +22,7 @@ body {
.st-sticky-push,
footer {
height: 40px; /* Change height. Can use px, ems or % */
-
+
@media (min-width: 768px) {
height: 40px; /* Change height. Can use px, ems or % */
}
@@ -185,8 +185,18 @@ footer {
background: #0055dd;
}
+# For Image rendering on Chrome
+img {
+ image-rendering: optimizeSpeed; /* */
+ image-rendering: -moz-crisp-edges; /* Firefox */
+ image-rendering: -o-crisp-edges; /* Opera */
+ image-rendering: -webkit-optimize-contrast; /* Chrome (and Safari) */
+ image-rendering: optimize-contrast; /* CSS3 Proposed */
+ -ms-interpolation-mode: nearest-neighbor; /* IE8+ */
+}
+
@media (max-width: 768px) {
#cookie-bar {
height: 60px;
}
-}
\ No newline at end of file
+}