Skip to content

Instantly share code, notes, and snippets.

@minakshi-sharma
Created April 21, 2020 11:59
Show Gist options
  • Save minakshi-sharma/6369163f71c57ca639077d2fce1bf90f to your computer and use it in GitHub Desktop.
Save minakshi-sharma/6369163f71c57ca639077d2fce1bf90f to your computer and use it in GitHub Desktop.
circles override
<style>
.counter_circle5 {
display: inline-flex;
top: 0px;
right: -25px;
z-index: 10;
overflow: hidden;
width:105px;
position: relative;
margin: 0 0;
background-color: transparent;
color: #204580;
text-align: center;
}
.counter_circle5:after {
margin-top:0px;
padding-bottom: 105px;
width: 105px;
height: 0;
border-radius: 50%;
background: #f9d946;
content: "";
}
.counter_circle__inner5 {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 80px;
height: 150px;line-height:30px;
}
.counter_circle__wrapper5 {
display: table;
width: 50%;
height: 70%;
}
.counter_circle__content5 {
display: table-cell;
padding: 1em;
vertical-align: middle;
}
.counter_circle6 {
display: inline-flex;
overflow: hidden;
width:150px;
position: relative;
margin: 0 0;
background-color: transparent;
color: #204580;
text-align: center;
}
.counter_circle6:after {
margin: 0 auto;
padding-bottom: 160px;
padding-top: 0px;
width: 150px;
height: 20;
padding-bottom: 130px;
border-radius: 50%;
background: #204580;;
content: "";
}
.counter_circle__inner6 {
position: absolute;
top: 0;
bottom: 0;
left: 0;
width: 150px;
height: 100px;line-height:0px;
}
.counter_circle__wrapper6 {
display: table;
width: 100%;
height: 150%;
}
.counter_circle__content6 {
display: table-cell;
padding: 1em;
vertical-align: middle;
}
</style>
<center>
<div class="counter_circle5">
<div class="counter_circle__inner5">
<div class="counter_circle__wrapper5">
<div class="counter_circle__content5" style="color: #000000; font-family: 'Nunito';
font-weight: 400; letter-spacing: 0px;line-height:20px;"><span style="font-size:25px;">1500</span><br><span style="font-size:12px;">agronomists</span></div>
</div>
</div>
</div>
<div class="counter_circle6">
<div class="counter_circle__inner6">
<div class="counter_circle__wrapper6">
<div class="counter_circle__content6" style="color: #ffffff; font-family: 'Nunito';
font-weight: 400; letter-spacing: 0px;line-height:20px;"><span style="font-size:50px;">3.5</span><br><span style="font-size:12px;">million farming<br>families </span></div>
</div>
</div>
</div></center>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment