Skip to content

Instantly share code, notes, and snippets.

@etrepum
Created February 11, 2014 23:12
Show Gist options
  • Save etrepum/8946357 to your computer and use it in GitHub Desktop.
Save etrepum/8946357 to your computer and use it in GitHub Desktop.
Mission Bit Intro 03 - Logo
svg {
stroke: none;
width: 500px;
height: 500px;
}
#logo-center {
position: absolute;
top: 80px;
left: 10px;
}
#logo-top-left {
position: absolute;
top: 72px;
left: 220px;
}
#logo-top-right {
position: absolute;
top: 200px;
left: 188px;
}
#logo-bottom {
position: absolute;
top: 123px;
left: 432px;
}
<!doctype html>
<html>
<head>
<title>Mission Bit Logo</title>
<link rel="stylesheet" href="logo.css">
</head>
<body>
<svg id="logo-center" viewBox="0 0 122 122">
<path d="M37,0 L0,21 L0,63 L36,84 L73,63 L73,21 L37,0 Z M68,26 L68,61 L50,71 L50,45 L36,52 L23,45 L23,71 L5,61 L5,26 L36,43 L68,26 Z" fill="#424242" />
</svg>
<svg id="logo-top-right" viewBox="0 0 122 122">
<path d="M0,10 L16,0 L53,21 L53,64 L37,73 L37,31" fill="#DC139C"/>
</svg>
<svg id="logo-top-left" viewBox="0 0 122 122">
<path d="M54,10 L37,0 L0,21 L0,64 L16,73 L16,31" fill="#FB8B00"/>
</svg>
<svg id="logo-bottom" viewBox="0 0 122 122">
<path d="M0,0 L0,19 L 37,40 L 74,19 L74,0 L37,21" fill="#0169C9"/>
</svg>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment