Skip to content

Instantly share code, notes, and snippets.

@bertobox
bertobox / dabblet.css
Created September 3, 2013 17:15 — forked from anonymous/dabblet.css
Cajas de texto
/**
* Cajas de texto
* En esta sección, van los selectores y propiedades CSS
* @author Robert Valencia <http://robertvalencia.com>
*/
/** Reset de CSS
* Por lo general hay ciertas reglas de CSS que usamos
* para ‘resetear’ algunos valores y así tener un punto
* de partida más apropiado a nuestras necesidades.
@bertobox
bertobox / list-styles-for-markdown.css
Created August 28, 2012 20:31
Easy list style types for Markdown
.lower_roman+ol, .lower_roman+ul {list-style-type: lower-roman;}
.upper_roman+ol, .upper_roman+ul {list-style-type: upper-roman;}
.lower_alpha+ol, .lower_alpha+ul {list-style-type: lower-alpha;}
.upper_alpha+ol, .upper_alpha+ul {list-style-type: upper-alpha;}
.lower_greek+ol, .lower_greek+ul {list-style-type: lower-greek;}
.lower_latin+ol, .lower_latin+ul {list-style-type: lower-latin;}
.upper_latin+ol, .upper_latin+ul {list-style-type: upper-latin;}
.none+ol, .none+ul {list-style-type:none;}
.disc+ol, .disc+ul {list-style-type:disc;}
.circle+ol, .circle+ul {list-style-type:circle;}