Skip to content

Instantly share code, notes, and snippets.

@Snugug
Forked from tkadlec/trigram.html
Created July 11, 2012 15:35
Show Gist options
  • Save Snugug/3091195 to your computer and use it in GitHub Desktop.
Save Snugug/3091195 to your computer and use it in GitHub Desktop.
Trigram for heaven icon
<html>
<head>
<title>Trigram for heaven icon</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width" />
<style type="text/css">
#menu{
position: relative;
}
#menu a{
padding-left: 20px;
}
#menu a:before {
content: "";
position: absolute;
top: 30%;
left:0px;
width:12px;
height:2px;
border-top: 6px double #000;
border-bottom: 2px solid #000;
}
</style>
</head>
<body>
<p id="menu"><a href="#">Menu</a>​</p>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment