Advertisement
kdsjflkdj

Untitled

Feb 7th, 2021
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.89 KB | None | 0 0
  1. /* retina query */
  2. @media only screen and (-webkit-min-device-pixel-ratio:2) and (max-width:991.98px),only screen and (min--moz-device-pixel-ratio:2) and (max-width:991.98px),only screen and (-o-min-device-pixel-ratio:2/1) and (max-width:991.98px),only screen and (min-device-pixel-ratio:2) and (max-width:991.98px),only screen and (min-resolution:192dpi) and (max-width:991.98px),only screen and (min-resolution:2dppx) and (max-width:991.98px){
  3.  
  4.     .standard-logo{
  5.         display: none;
  6.     }
  7.     a.retina-logo{
  8.         display: inline-block;
  9.     }
  10.  
  11.  
  12. }
  13.  
  14.  
  15. @media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (min--moz-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-device-pixel-ratio:2),only screen and (min-resolution:192dpi),only screen and (min-resolution:2dppx){
  16.     .standard-logo{
  17.         display: none;
  18.     }
  19.     a.retina-logo{
  20.         display: inline-block;
  21.     }
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement