function dm_button( $atts, $content = null ) {
extract(shortcode_atts(
array(
"color" => '',
"colorb" => '',
), $atts));
$stylez = array();
if($color) $stylez[]='border: 2px solid '.$color.';';
if($colorb) $stylez[]='background-color: '.$colorb.';';
if($float=="right") $stylez[]=='float: right; width: auto;';
if($float=="left") $stylez[]='float: left; width: auto;';
if($float=="middle") $stylez[]='display: table; margin-right: auto; margin-left: auto;';
if($float=="center") $stylez[]'display: table; margin-right: auto; margin-left: auto;';
return '
<div class="dm-button-external"><a href="#"><button '.(!empty($stylez) ? 'style="'.implode(' ',$stylez).'"' : '').' class="bt-button">'.$content.'</button></a></div>
';
}
add_shortcode( 'button', 'dm_button' );