I think there is room for improvement here. When you look at the js fiddle, the text appears blurry and not as polished as it could be. Any suggestions on how to make the text sharper and more professional?
Would using @font face to import fonts help? And can I do that with laravel-mix somehow?
https://jsfiddle.net/t9b8ukoz/
.btn-enquiry {
background-color: #C30030;
height: 50px;
color: #ffffff;
font-family: Helvetica Neue LT Std;
border-width: 0;
font-size:20px;
border-radius: 40px;
margin-top:30px;
}
.btn-enquiry-no {
background-color: #ffffff;
border-color: #C30030;
height: 50px;
color: #c30030;
font-family: Helvetica Neue LT Std;
border-width: 2px;
font-size:20px;
border-radius: 40px;
margin-top:30px;
}
<div class="container">
<div class="row">
<div class="col-sm-4">
<button class="button btn-block btn-enquiry">Yes</button>
<button class="button btn-block btn-enquiry-no">No</button>
</div>
</div>
</div>