Last active
October 8, 2015 05:08
-
-
Save DeviaVir/3282890 to your computer and use it in GitHub Desktop.
Hosted, with love, by DualDev Logo
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
/** | |
* Hosted, with love, by DualDev Logo | |
*/ | |
html, body { | |
height: 100%; | |
} | |
body { | |
margin: 0; | |
padding: 0; | |
background: #f4f4f4; | |
/*background: #333;*/ | |
min-height: 100%; | |
position: relative; | |
} | |
.dualdev { | |
position: absolute; | |
bottom: 0; | |
right: 0; | |
width: 151px; | |
height: 30px | |
} | |
.dualdev.black { | |
background: black; | |
} | |
.dualdev.white { | |
background: white; | |
} | |
.dualdev.transparent { | |
background: transparent; | |
} | |
.dualdev .logo { | |
position: absolute; | |
top: 50%; | |
right: 10px; | |
width: 121px; | |
height: 18px; | |
margin-top: -9px; | |
background: transparent url( 'https://www.dualdev.com/skin/1/img/logos/transparent_black-love.png' ) no-repeat 0 0; | |
background-position: 0 -23px | |
} | |
.dualdev .logo.white { | |
background-image: url( 'https://www.dualdev.com/skin/1/img/logos/transparent_white-love.png' ); | |
} | |
/* Retina */ | |
@media all and (-webkit-min-device-pixel-ratio: 2) { | |
.dualdev .logo { | |
background-image: url( 'https://www.dualdev.com/skin/1/img/logos/[email protected]' ); | |
background-size: 151px 36px; | |
} | |
.dualdev .logo.white { | |
background-image: url( 'https://www.dualdev.com/skin/1/img/logos/[email protected]' ); | |
background-size: 151px 36px; | |
} | |
} |
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 class="dualdev logo transparent"> | |
<a href="https://www.dualdev.com/" title="DualDev" target="_blank" class="logo"></a> | |
</div> |
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
{"view":"split","fontsize":"100","seethrough":"","prefixfree":"1","page":"css"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment