Skip to content

Instantly share code, notes, and snippets.

@deitrick
Created October 10, 2012 20:51
Show Gist options
  • Save deitrick/3868338 to your computer and use it in GitHub Desktop.
Save deitrick/3868338 to your computer and use it in GitHub Desktop.
HTML CSS LOGO of intridea. Not perfect, but yeah...
<p><span>i</span></p>
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