Skip to content

Instantly share code, notes, and snippets.

@DrewMcArthur
Last active October 19, 2017 10:46
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 DrewMcArthur/27d53d7cace6d6ec3e3573b4002304ec to your computer and use it in GitHub Desktop.
Save DrewMcArthur/27d53d7cace6d6ec3e3573b4002304ec to your computer and use it in GitHub Desktop.
A single file describing an html page that renders the icon used for my website.
<html><head>
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,500" rel="stylesheet" type="text/css">
<style type="text/css">
span {
position: absolute;
top: 3.5px;
}
span.D{
left: 7.5px;
}
span.D.back{
font-weight: 400;
color: #03176e;
z-index: -5;
left: 9px;
}
span.M{
right: 7px;
z-index: -10
}
div {
font-family: Lato;
font-weight: 300;
background-color: #03176e;
color: #FAF6E6;
position: absolute;
text-align: center;
vertical-align: middle;
height: 100px;
width: 100px;
font-size: 75px;
border-radius: 5px;
z-index: -50;
}
</style></head>
<body><div>
<span class="D">D</span>
<span class="D back">D</span>
<span class="M">M</span>
</div></body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment