Created
October 10, 2012 20:51
-
-
Save deitrick/3868338 to your computer and use it in GitHub Desktop.
HTML CSS LOGO of intridea. Not perfect, but yeah...
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
<p><span>i</span></p> |
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
p { | |
position: relative; | |
width: 100px; | |
height: 100px; | |
margin: 100px; | |
border: 15px solid green; | |
border-radius: 5px 50px 30px 50px; | |
} | |
span { | |
position: absolute; | |
font-size: 120px; | |
font-family: sans-serif; | |
font-weight: bold; | |
left: 38px; | |
top:5px; | |
} | |
span:after { | |
content: " "; | |
width: 10px; | |
height: 15px; | |
box-shadow: 15px 15px white; | |
position: absolute; | |
top: 80px; | |
left: 10px; | |
} | |
span:before { | |
content: " "; | |
width: 10px; | |
height: 15px; | |
box-shadow: 15px 15px white; | |
position: absolute; | |
top: 80px; | |
left: -17px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment