JSFiddle - React, Tailwind, and code Playground

by genelocklin

HTML

<div class="donate-now">
    <h1><a href="#">Donate <abbr title="dollar-sign">&#36;</abbr>5</a></h1>
</div>

CSS

body { 
    width: 10em; 
    margin: 2em auto;
    font: 93.8%/1 sans-serif;    
}

.donate-now {
    background: #69DAA1;
    text-align: center;
    text-transform: uppercase;
    width: 6.5em;
    position: relative;
    padding: .5em .25em;  
}

.donate-now:before {
    content:"";
    width: 0;
    height: 0;
    border-left: 3.25em solid transparent;
    border-right: 3.25em solid transparent;
    border-bottom: .5em solid #69DAA1;
    position: absolute;
    top: -.5em;
}

.donate-now:after {
    content:"";
    width: 0;
    height: 0;
    border-left: 3.25em solid transparent;
    border-right: 3.25em solid transparent;
    border-top: .5em solid #69DAA1;
    position: absolute;
    bottom: -.5em;
}

.donate-now h1 a { 
    text-shadow: 1px 1px #aaa;
    text-decoration: none;
    color: #fff;
    display: block;
}