It seems silly not to use the bootstrap classes. I’ve used the download_link filter to achieve what I need by adding this simple function.
function change_button_class( $text ) {
return str_replace(‘[btnclass]’, ‘btn btn-primary btn-large’, $text);
}
add_filter( ‘download_link’, ‘change_button_class’ );