[BACK]Return to mandoc.css CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/mandoc.css between version 1.2 and 1.5

version 1.2, 2016/04/13 10:19:23 version 1.5, 2017/01/19 15:27:34
Line 1 
Line 1 
 /* $Id$ */  /* $Id$ */
   
 /*  /*
  * This is an example style-sheet provided for mandoc(1) and the -Thtml   * Standard style sheet for mandoc(1) -Thtml and man.cgi(8).
  * or -Txhtml output mode.  
  *  
  * It mimics the appearance of the traditional cvsweb output.  
  *  
  * See mdoc(7) and man(7) for macro explanations.  
  */   */
   
 html            { max-width: 880px; margin-left: 1em; }  /* Global defaults. */
 body            { font-size: smaller; font-family: Helvetica,Arial,sans-serif; }  
 body > div                      { padding-left: 2em;  
                                   padding-top: 1em; }  
 body > div.mandoc,  
 body > div#mancgi               { padding-left: 0em;  
                                   padding-top: 0em; }  
 body > div.results              { font-size: smaller; }  
 #mancgi fieldset                { text-align: center;  
                                   border: thin solid silver;  
                                   border-radius: 1em;  
                                   font-size: small; }  
 #mancgi input[name=expr]        { width: 25%; }  
 .results td.title               { vertical-align: top;  
                                   padding-right: 1em; }  
 h1              { margin-bottom: 1ex; font-size: 110% }  
 div.section > h1 { margin-left: -4ex; } /* Section header (Sh, SH). */  
 h2              { margin-bottom: 1ex; font-size: 105%; margin-left: -2ex; } /* Sub-section header (Ss, SS). */  
 table           { width: 100%; margin-top: 0ex; margin-bottom: 0ex; } /* All tables. */  
 td              { vertical-align: top; } /* All table cells. */  
 p               { } /* Paragraph: Pp, Lp. */  
 blockquote      { margin-left: 5ex; margin-top: 0ex; margin-bottom: 0ex; } /* D1. */  
 div.section     { margin-bottom: 2ex; margin-left: 5ex; } /* Sections (Sh, SH). */  
 div.subsection  { } /* Sub-sections (Ss, SS). */  
 table.synopsis  { } /* SYNOPSIS section table. */  
 div.spacer      { margin: 1em 0; }  
   
 /* Preamble structure. */  html {          max-width: 100ex; }
   body {          font-family: Helvetica,Arial,sans-serif; }
   table {         width: 100%;
                   margin-top: 0ex;
                   margin-bottom: 0ex; }
   td {            vertical-align: top; }
   
 table.foot      { font-size: smaller; margin-top: 1em; border-top: 1px dotted #dddddd; } /* Document footer. */  /* Search form and search results. */
 td.foot-date    { width: 50%; } /* Document footer: date. */  
 td.foot-os      { width: 50%; } /* Document footer: OS/source. */  fieldset {      border: thin solid silver;
 table.head      { font-size: smaller; margin-bottom: 1em; border-bottom: 1px dotted #dddddd; } /* Document header. */                  border-radius: 1em;
 td.head-ltitle  { width: 10%; } /* Document header: left-title. */                  text-align: center; }
 td.head-vol     { width: 80%; } /* Document header: volume. */  input[name=expr] {
 td.head-rtitle  { width: 10%; } /* Document header: right-title. */                  width: 25%; }
   
   div.results {   margin-top: 1em;
                   margin-left: 2em;
                   font-size: smaller; }
   
   /* Header and footer lines. */
   
   table.head {    border-bottom: 1px dotted #808080;
                   margin-bottom: 1em;
                   font-size: smaller; }
   td.head-vol {   text-align: center; }
   td.head-rtitle {
                   text-align: right; }
   
   table.foot {    border-top: 1px dotted #808080;
                   margin-top: 1em;
                   font-size: smaller; }
   td.foot-date {  width: 50%; }
   td.foot-os {    width: 50%;
                   text-align: right; }
   
   /* Sections and paragraphs. */
   
   div.manual-text {
                   margin-left: 5ex; }
   h1.Sh {         margin-top: 2ex;
                   margin-bottom: 1ex;
                   margin-left: -4ex;
                   font-size: 110%; }
   h2.Ss {         margin-top: 2ex;
                   margin-bottom: 1ex;
                   margin-left: -2ex;
                   font-size: 105%; }
   div.Pp {        margin: 1ex 0ex; }
   
   
   blockquote      { margin-left: 5ex; margin-top: 0ex; margin-bottom: 0ex; } /* D1. */
   table.synopsis  { } /* SYNOPSIS section table. */
   
 /* General font modes. */  /* General font modes. */
   

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.5

CVSweb