plugins:advanced:start

ADVANCED DOKUWIKI

Administrar > Complementos adicionales > Advanced Configurations > CSS Styles > All

Ahí pegar el código

/* 2026 Gemini Codec */
 
/* Forzar fuente monoespaciada en todo el wiki */
body, #dokuwiki__site, p, div, li, td, pre, code {
    font-family: 'Courier New', Courier, monospace !important;
    font-size: 15px; /* Ajusta el tamaño si la ves muy pequeña */
}
 
/* Títulos con estilo de terminal */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Courier New', Courier, monospace !important;
    border-bottom: 1px dashed #ccc; /* Les da un toque de informe antiguo */
}
 
/* Justificar el texto de los párrafos y añadir sangría */
.page p {
    text-align: justify;       
    text-justify: inter-word;  
    text-indent: 2em;
    margin-bottom: 1.5em;      
    hyphens: auto;
    -webkit-hyphens: auto;
}
 
/* Evitar que la sangría afecte a elementos especiales */
/* (A veces no queremos sangría en notas o avisos) */
.page .admonition p, .page .notices p {
    text-indent: 0;
}
 
/* Atacamos directamente al div de contenido de la nota al pie */
.footnotes .fn .content {
    text-align: justify !important;
    text-justify: inter-word !important;
/*    display: block !important;*/
    font-family: 'Courier New', Courier, monospace !important;
}
  • 1. Purgar la cache.
  • 2. Ir a parámetros de configuración y guardar. Esto vacía la caché.
  • 3. F5 (recargar la página).
  • plugins/advanced/start.txt
  • Última modificación: 2026/04/25 07:46
  • por webmaster