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

Diff for /mandoc/mandoc.css between version 1.37 and 1.42

version 1.37, 2018/08/27 23:13:44 version 1.42, 2018/12/04 06:11:49
Line 1 
Line 1 
 /* $Id$ */  /* $Id$ */
 /*  /*
  * Standard style sheet for mandoc(1) -Thtml and man.cgi(8).   * Standard style sheet for mandoc(1) -Thtml and man.cgi(8).
    *
    * Written by Ingo Schwarze <schwarze@openbsd.org>.
    * I place this file into the public domain.
    * Permission to use, copy, modify, and distribute it for any purpose
    * with or without fee is hereby granted, without any conditions.
  */   */
   
 /* Global defaults. */  /* Global defaults. */
Line 8 
Line 13 
 html {          max-width: 65em; }  html {          max-width: 65em; }
 body {          font-family: Helvetica,Arial,sans-serif; }  body {          font-family: Helvetica,Arial,sans-serif; }
 table {         margin-top: 0em;  table {         margin-top: 0em;
                 margin-bottom: 0em; }                  margin-bottom: 0em;
 td {            vertical-align: top; }                  border-collapse: collapse; }
   /* Some browsers set border-color in a browser style for tbody,
    * but not for table, resulting in inconsistent border styling. */
   tbody {         border-color: inherit; }
   tr {            border-color: inherit; }
   td {            vertical-align: top;
                   padding-left: 0.2em;
                   padding-right: 0.2em;
                   border-color: inherit; }
 ul, ol, dl {    margin-top: 0em;  ul, ol, dl {    margin-top: 0em;
                 margin-bottom: 0em; }                  margin-bottom: 0em; }
 li, dt {        margin-top: 1em; }  li, dt {        margin-top: 1em; }
Line 151  td.foot-os { text-align: right; }
Line 164  td.foot-os { text-align: right; }
 .RsV { }  .RsV { }
   
 .eqn { }  .eqn { }
 .tbl { }  .tbl td {       vertical-align: middle; }
   
 .HP {           margin-left: 3.8em;  .HP {           margin-left: 3.8em;
                 text-indent: -3.8em; }                  text-indent: -3.8em; }

Legend:
Removed from v.1.37  
changed lines
  Added in v.1.42

CVSweb