Skip to content

Instantly share code, notes, and snippets.

@cluzier
Created June 20, 2019 13:50
Show Gist options
  • Save cluzier/0773493d0ab080fea9e81622479184a3 to your computer and use it in GitHub Desktop.
Save cluzier/0773493d0ab080fea9e81622479184a3 to your computer and use it in GitHub Desktop.
"M" Stamp Icon
<div class="wrapper">
<div id="circ">
<p>DESIGN IT • MAKE IT HOME • PLAN IT • DESIGN IT • BUILD IT •
</div>
<div class="M">M</div>
</div>
const barberText = new CircleType(document.getElementById('circ'));
barberText.radius(2);
<script src="https://cdn.rawgit.com/peterhry/CircleType/master/dist/circletype.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lettering.js/0.7.0/jquery.lettering.min.js"></script>
body {
background: #24282B
}
.wrapper {
display: flex;
justify-content: center;
margin-top: 30vh;
}
.M {
font-size: 40vmin;
color: #ac6b4d;
font-family: 'Chonburi', cursive;
}
#circ {
font-size: 3vmin;
color: #bebbbc;
font-family: 'Cousine', monospace;
position: relative;
margin-top: -10vmin;
left: 1vmin;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment