Skip to content

Instantly share code, notes, and snippets.

@lizardking8610
Created April 20, 2018 15:59
Show Gist options
  • Save lizardking8610/1cc753563555d9dbc02ee6ff72c3e627 to your computer and use it in GitHub Desktop.
Save lizardking8610/1cc753563555d9dbc02ee6ff72c3e627 to your computer and use it in GitHub Desktop.
Create a Stitched Border for Buttons and Elements with CSS
.stitched {
padding: 20px 10px;
margin: 10px;
background: #67bbab;
color: #ffffff;
font-size: 21px;
font-weight: bold;
line-height: 1.3em;
border: 2px dashed #ffffff;
border-radius: 10px;
box-shadow: 0 0 0 4px #67bbab, 2px 1px 6px 4px rgba(10, 10, 0, 0.5);
text-shadow: -1px -1px rgba(104, 134, 142, 0.57);
font-weight: normal;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment