Inspired by: https://dribbble.com/shots/3067410--M-Stamp-Icon
Created
June 20, 2019 13:50
-
-
Save cluzier/0773493d0ab080fea9e81622479184a3 to your computer and use it in GitHub Desktop.
"M" Stamp Icon
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const barberText = new CircleType(document.getElementById('circ')); | |
barberText.radius(2); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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