Button With Download Icon Right Side #78
CSS download button icon right side
Adding these style CSS buttons to your website is easier than you think. Simply copy and paste the CSS code provided with each button design into your stylesheet
Preview Button Style
You can view the default style of buttons, the disabled state mode style of buttons, and the full-width block style of the button here. Some buttons style may not display in full width format
Button Source Code HTML and CSS
Click the button below to download the source code or edit it live.
To copy this click on the icon at the top right of the code box
<button type="button" class="btn-78">
<span class="btn-78-text">
<span>Button 78</span>
</span>
<span class="btn-78-icon">
<svg width="50" height="50" fill="currentColor" viewBox="0 0 512 512"><path d="M288 32c0-17.7-14.3-32-32-32s-32 14.3-32 32V274.7l-73.4-73.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L288 274.7V32zM64 352c-35.3 0-64 28.7-64 64v32c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V416c0-35.3-28.7-64-64-64H346.5l-45.3 45.3c-25 25-65.5 25-90.5 0L165.5 352H64zm368 56a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"/></svg>
</span>
</button>
.btn-78 {
color: #ffffff;
font-size: 16px;
border-radius: 5px;
border: solid 0 #c00569;
text-decoration: none;
cursor: pointer;
position: relative;
overflow: hidden;
background: linear-gradient(132deg, #F4D03F 0%, #16A085 100%);
display: inline-flex;
align-items: center;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;
justify-content: space-between;
}
.btn-78:hover {
background: #c00569;
}
.btn-78-text {
position: relative;
padding: 10px 18px;
flex: 1 1 auto;
}
.btn-78-icon {
position: relative;
border-left: 1px solid #ffffff29;
box-shadow: inset rgb(0 0 0 / 14%) 1px 0 0;
padding: 10px 10px;
}
.btn-78-icon>svg {
position: relative;
display: inline-block;
vertical-align: middle;
width: 20px;
height: 20px;
top: 0px;
left: 0px;
}
.btn-78:disabled {
pointer-events: none;
opacity: .65;
color: #7e7e7e;
background: #dcdcdc;
box-shadow: none;
}