I am currently working on styling a button with CSS but have hit a bit of a snag. Front End isn't really my jam.
Is it possible to have the clock icon on the right (20 sec text underneath, centered) of the green area and a white border to the left that splits the text and the icon?
Demo: https://jsfiddle.net/tcj6xrLo/
Example
.btn--shadow {
box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
.btn-green {
background: #5CC63E;
color: #fff;
font-weight: bold;
}
.btn {
display: inline-block;
padding: 1.25rem 5rem;
margin: 1rem 0;
font-weight: 800;
letter-spacing: 0.10rem;
text-decoration: none;
-webkit-appearance: none;
}
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css" rel="stylesheet"/>
<div class="col-md-5" style="position: relative;
z-index: 1;">
<a href="#" class="btn btn-green btn--shadow" style="padding: 1rem 3.5rem;float:right;">Get help now <div style="border-left:1px solid white"><i class="fa fa-clock-o" aria-hidden="true"></i><br>20 sec</div></a>
</a>
</div>

20 sectext onto the same line?