/* ePub base r2.1 ePubLibre - style.css*/
/*ESTILO DE PÁRRAFO POR DEFECTO
Edite y habilite o deshabilite un estilo por defecto para el libro, o cree su propio estilo de párrafo personalizado que se adapte al mismo. Recuerde que afectará a todo el contenido, exceptuando las páginas que no enlacen este css (como las fijas). Tambien puede crear uno propio que se ajuste a sus necesidades. OJO: NO SE DEBE ASIGNAR UN TAMAÑO DE FUENTE POR DEFECTO PARA
, deje que el lector escoja el que le sea más comodo para la lectura. */
/* El estilo por defecto es el de párrafo normal, apto para novelas, relatos, ensayos, etc.*/
p {
margin: 0;
text-align: justify;
text-indent: 1.5em;
line-height: 125%;
}
/* Estilo de párrafo aleman o moderno. Apto para obras como manuales, obras de referencia, obras científicas o técnicas, etc.*/
/*
p {
margin: 1em 0;
text-align:justify;
text-indent:0;
line-height: 125%;
}
*/
/* ESTILOS GENERALES. PUEDE ADAPTARLOS O ELIMINARLOS SI NO LOS USA*/
/* encabezados */
h1 {
font-size: 1.5em;
margin: 20% 0 2em;
}
/* dedicatoria */
.dedicatoria {
margin: 25% 3% 0 15%;
text-align: right;
}
.dedicatoria p {
text-align: right;
text-indent: 0;
}
/* El valor por defecto de
ahora es un espacio en blanco para marcar saltos de contexto. Cambie la altura del mismo a su conveniencia modificando el atributo height */
hr {
height: 2.5em;
}
/* Control de silabeo. Asegurese de agregar cualquier estilo que no quiera que el e-reader divida con guiones, como los subtítulos, versos, etc. */
.dedicatoria {
adobe-hyphenate: none;
-ms-hyphens: none;
-moz-hyphens: none;
-webkit-hyphens: none;
-epub-hyphens: none;
hyphens: none;
}
/* ESTILOS DE EJEMPLO PARA EL EPUB-BASE. ELIMINAR SI NO SE USAN */
h1 + p, hr + p, .fecha + p {
text-indent: 0;
}
/* Equivale a aplicar el estilo .asangre a todas los párrafos que cumplan con las condiciones especificadas, por ejemplo los que van después de un título o salto de escena
. Puede agregar otros estilos a la lista. */
/* ----- ESTILOS PERSONALES ----- */
.poema {margin: 1.5em; font-size: 95%; }
.poema p {margin-left:2em; text-indent: -1.5em;}
.titu { font-weight:normal; }
.fecha { font-weight:bold; margin:2.5em 0 1em; text-indent:0; }
.marg1 { padding-left:2em; }
.horar { padding-left:5em; margin:1em; }
.horar p { text-indent: -3.8em; text-align:left; }
.mensaje { margin:1em 2em; text-indent:0; font-size:90%; font-family:sans-serif; }
.mono { font-family: "Courier10"; font-size:.9em; }
/* ---- fuentes ---- */
@font-face {
font-family: "Courier10";
font-style: normal;
font-weight: normal;
src: url(../Fonts/Courier10.ttf);
}
@font-face {
font-family: "Courier10";
font-style: italic;
font-weight: normal;
src: url(../Fonts/Courier10-I.ttf);
}
@font-face {
font-family: "Courier10";
font-style: normal;
font-weight: bold;
src: url(../Fonts/Courier10-B.ttf);
}
@font-face {
font-family: "Courier10";
font-style: italic;
font-weight: bold;
src: url(../Fonts/Courier10-BI.ttf);
}