Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

viñetas

diseño de viñetas

// Add Shortcode
function custom_shortcode() {

	/* LISTA DESORDENDA - peengler.com */
	
	.entry-content clear ul {
	    list-style-type:none;
	    margin:0!important;
	    padding:0!important;
	}
	.entry-content clear ul li::before {
	    display: inline-block;
	    font-family: FontAwesome;
	    font-style: normal;
	    font-weight: normal;
	    line-height: 1;
	    -webkit-font-smoothing: antialiased;
	    -moz-osx-font-smoothing: grayscale;
	    content: "f058"; /* ICONO DE LA LISTA */
	    margin-right: 8px;
	    color: #2E64FE; /* COLOR DEL ICONO */
	    font-size: 25px; /* TAMAÑO DEL ICONO DE LA LISTA */
	    margin-left: -16px; /* MARGEN IZQUIERDO */
	}
	
	.entry-content clear ul li {
	    padding: 0px 0px 0px 20px!important; /* CAMBIAR EL MARGEN */
	}
	
	.entry-content clear ul li:hover::before {
		color: #00FF80; /* COLOR DEL ICONO */
		
	}
	
	/* FIN DE LA LISTA DESORDENDA - peengler.com */

}
add_shortcode( '', 'custom_shortcode' );