Skip to content

Instantly share code, notes, and snippets.

@dgdavid
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dgdavid/5f6c5140ed82239fba5c to your computer and use it in GitHub Desktop.
Save dgdavid/5f6c5140ed82239fba5c to your computer and use it in GitHub Desktop.
Ñ for CSS Sans Font
<div class="ene"></div>
/* Letter Ñ for CSS Sans */
/* http://yusugomori.com/projects/css-sans/fonts */
.ene {
position: relative;
top: 25px;
left: 10px;
width: 63px;
height: 125px;
border-width: 0 15px 0 15px;
border-color: #000000;
border-style: solid;
}
.ene:after {
transform: skew(30deg,0);
position: absolute;
content: '';
top: 0;
left: 24px;
width: 15px;
height: 125px;
background-color: #000000;
}
.ene:before {
margin-top: -80px;
content: "\02dc";
font-size: 200px;
position: absolute;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment