Last active
May 18, 2016 20:28
-
-
Save dotspencer/36c0e2e5089641625e91ff314df08794 to your computer and use it in GitHub Desktop.
EGI project download shortcode. Simple One Tag Shortcode.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<a id="pdf-link" href="{src}" target="_blank"> | |
<span>Download PDF</span> | |
</a> | |
<style> | |
#pdf-link{ | |
background-color: #50575e; | |
color: #fff; | |
font-family: 'Open Sans',sans-serif; | |
font-weight: 400; | |
font-size: 12px; | |
line-height: 24.5px; | |
padding: 10px 20px; | |
margin-left: -4px; | |
display: inline-block; | |
transition: all .2s; | |
border: 3px solid transparent; | |
border-bottom: 2px solid transparent; | |
} | |
#pdf-link:hover{ | |
background-color:rgb(56, 59, 63); | |
} | |
.hidden{ | |
display:none; | |
} | |
</style> | |
<script type="text/javascript"> | |
// Adds the link to the end of the tabs | |
jQuery('#pdf-link').appendTo('.vc_tta-tabs-list'); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment