APK Download Button CSS
Stylish APK download buttons for your Blogger posts
Button Preview
CSS Code for Blogger
<style>
/* APK Download Button Styles */
.apk-button {
display: inline-flex;
align-items: center;
background: linear-gradient(135deg, #4361ee 0%, #3a56d4 100%);
color: white;
text-decoration: none;
padding: 15px 30px;
border-radius: 50px;
font-weight: 600;
font-size: 18px;
transition: all 0.3s ease;
box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
margin: 10px 0;
}
.apk-button:hover {
transform: translateY(-3px);
box-shadow: 0 8px 20px rgba(67, 97, 238, 0.4);
background: linear-gradient(135deg, #3a56d4 0%, #2f48b9 100%);
}
.apk-button i {
margin-right: 10px;
font-size: 20px;
}
.apk-button.small {
padding: 10px 20px;
font-size: 16px;
}
.apk-button.large {
padding: 18px 35px;
font-size: 20px;
}
.apk-button.green {
background: linear-gradient(135deg, #2ed573 0%, #25b360 100%);
box-shadow: 0 5px 15px rgba(46, 213, 115, 0.3);
}
.apk-button.green:hover {
background: linear-gradient(135deg, #25b360 0%, #1e9c50 100%);
box-shadow: 0 8px 20px rgba(46, 213, 115, 0.4);
}
.apk-button.orange {
background: linear-gradient(135deg, #ff9e00 0%, #ff8700 100%);
box-shadow: 0 5px 15px rgba(255, 158, 0, 0.3);
}
.apk-button.orange:hover {
background: linear-gradient(135deg, #ff8700 0%, #e67800 100%);
box-shadow: 0 8px 20px rgba(255, 158, 0, 0.4);
}
</style>
How to Add to Blogger
- Go to your Blogger dashboard
- Click on "Theme" in the left sidebar
- Click "Edit HTML" button
-
Paste the CSS code above just before
]]></b:skin> - Click "Save" to apply the changes
- In your posts, use the following HTML for download buttons:
<!-- Standard APK Download Button -->
<a href="YOUR_DOWNLOAD_LINK" class="apk-button">
<i class="fas fa-download"></i> Download APK
</a>
<!-- Small Button -->
<a href="YOUR_DOWNLOAD_LINK" class="apk-button small">
<i class="fas fa-download"></i> Download
</a>
<!-- Large Button -->
<a href="YOUR_DOWNLOAD_LINK" class="apk-button large">
<i class="fas fa-download"></i> Get APK File
</a>
<!-- Green Button -->
<a href="YOUR_DOWNLOAD_LINK" class="apk-button green">
<i class="fas fa-download"></i> Download APK
</a>
<!-- Orange Button -->
<a href="YOUR_DOWNLOAD_LINK" class="apk-button orange">
<i class="fas fa-download"></i> Download APK
</a>
Note: Don't forget to replace
YOUR_DOWNLOAD_LINK with your actual APK download URL.
Comments
Post a Comment