Created
December 6, 2011 23:33
-
-
Save ravasthi/1440587 to your computer and use it in GitHub Desktop.
Add retina graphics to your website
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="page"> | |
<header> | |
<a class="home" href="/"><div class="logo"> </div></a> | |
<nav> | |
<a class="gallery" href="gallery.html">Gallery</a> | |
<a class="pricing" href="pricing.html">Pricing</a> | |
<a class="contact" href="mailto:[email protected]">Contact</a> | |
</nav> | |
</header> | |
</div> <!-- /#page --> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#page > header | |
{ | |
.logo | |
{ | |
width: $logo-width; | |
height: $logo-height; | |
background: image-url("logo.png") no-repeat center center; | |
@include background-size(100%); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#page > header | |
{ | |
.logo | |
{ | |
width: $logo-width; | |
height: $logo-height; | |
background: image-url("logo.png") no-repeat center center; | |
@include background-size(100%); | |
@media only screen and (-webkit-min-device-pixel-ratio: 2) | |
{ | |
background-image: image-url("[email protected]"); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment