JSFiddle - React, Tailwind, and code Playground
by huskydawgs
HTML
<div class="wrapper-opportunity">
<div class="circle-lt-orange">
<span class="number">1</span></div>
<p class="intro">Scope of work: Primary products or services requested on the project</p>
</div>
<div class="wrapper-opportunity">
<div class="circle-lt-orange">
<span class="number">1</span></div>
<p class="intro">Scope of work: Primary products or services requested on the project</p>
</div>
CSS
.wrapper-opportunity {
margin: 20px 0 20px 0
}
.circle-lt-orange {
border-radius: 100%;
height: 2em;
width: 2em;
text-align: center;
background: #f78c1f;
}
.circle-lt-orange .number {
margin-top: 0.10em;
font-size: 1.5em;
font-weight: bold;
font-family: sans-serif;
line-height: 1.4em;
color: #ffffff;
}
.wrapper-opportunity p.intro {
font-family:Arial,Helvetica,sans-serif;
font-size:13px;
color:#616161;
margin:-23px 0 0 44px;
text-align:left;
font-weight:normal;
line-height: 20px;
}