/******************************************************************************/
/*                                                                            */
/* article-10pt.css - Size overrides for 10pt article layout                  */
/* =========================================================                  */
/*                                                                            */
/* Load this stylesheet AFTER article.css to produce a 10pt article.          */
/*                                                                            */
/* Values derived from the LaTeX article class at 10pt:                       */
/*                                                                            */
/*   \normalsize    = 10pt                                                    */
/*   \baselineskip  = 12pt     (ratio 1.20)                                   */
/*   \footnotesize  = 8pt                                                     */
/*   \scriptsize    = 7pt      (used for footnote markers)                    */
/*   Page margins   ~ 3.5cm    (wider than 12pt to keep ~66 chars/line)       */
/*                                                                            */
/* This program is part of the Rexx Parser package                            */
/* [See https://rexx.epbcn.com/rexx-parser/]                                  */
/*                                                                            */
/* Copyright (c) 2024-2026 Josep Maria Blasco <josep.maria.blasco@epbcn.com>  */
/*                                                                            */
/* License: Apache License 2.0 (https://www.apache.org/licenses/LICENSE-2.0)  */
/*                                                                            */
/* Version history:                                                           */
/*                                                                            */
/* Date     Version Details                                                   */
/* -------- ------- --------------------------------------------------------- */
/* 20260303    0.5  First version.                                            */
/*                                                                            */
/******************************************************************************/

:root {
  --doc-font-size:        10pt;
  --doc-line-height:      1.20;
  --doc-footnote-size:    8pt;
  --doc-fn-marker-size:   6pt;
  --doc-pre-size:         7.2pt;
}

/******************************************************************************/
/* @page overrides                                                            */
/* var() may not work inside @page rules, so we use literal values.           */
/******************************************************************************/

@page {

  margin: 3.5cm;

  @bottom-center {
    font-size: 10pt;
  }

}
