Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

ComBox Styles

// Register Style
function combox_styles() {

	wp_register_style( 'combox', 'http://anibalsa.com/styles', false, '1.0' );
	wp_enqueue_style( 'combox' );

	wp_register_style( 'normalize', 'http://anibalsa.com/styles/normalize.css', false, '1.0' );
	wp_enqueue_style( 'normalize' );

}
add_action( 'wp_enqueue_scripts', 'combox_styles' );