home *** CD-ROM | disk | FTP | other *** search
/ hobbes.nmsu.edu 2008 / 2008-06-02_hobbes.nmsu.edu.zip / new / scummc-0.2.0-os2.zip / ScummC / manual / man.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2008-02-03  |  2.1 KB  |  128 lines

  1. /* ScummC
  2.  * Copyright (C) 2008  Alban Bedel
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
  17.  *
  18.  */
  19.  
  20. h1 { font-size: 140%; }
  21. h2 { font-size: 130%; }
  22. h3 { font-size: 120%; }
  23. h4 { font-size: 110%; }
  24.  
  25. h1,h2,h3,h4 {
  26.   text-transform: uppercase;
  27. }
  28.  
  29. em {
  30.   text-decoration: underline;
  31. }
  32.  
  33. .man {
  34.   max-width: 21cm;
  35.   margin: 0em auto;
  36.   border: solid thin;
  37. }
  38.  
  39. .man > .part-block {
  40.   margin: 0em 1em;
  41. }
  42.  
  43. .toc {
  44.   background: lightgrey;
  45.   padding: 0.2em 0em;
  46.   border-bottom: solid thin;
  47.   text-align: center;
  48. }
  49.  
  50. .toc a {
  51.   text-decoration: none;
  52.   color: inherit;
  53. }
  54.  
  55. .toc a:visited {
  56.   color: inherit;
  57. }
  58.  
  59. .toc a:hover {
  60.   color: blue;
  61. }
  62.  
  63. .toc > .toc-entry {
  64.   display: inline;
  65.   text-transform: uppercase;
  66.   padding-bottom: 0.2em;
  67. }
  68.  
  69. .toc-entry {
  70.   position: relative;
  71.   white-space: nowrap;
  72.   padding: 0em 1em;
  73. }
  74.  
  75. .toc-entry-childs {
  76.   position: absolute;
  77.   top: -1px;
  78.   left: 100%;
  79.   background: lightgrey;
  80.   visibility: hidden;
  81.   border: solid 1px;
  82. }
  83.  
  84. .toc > .toc-entry > .toc-entry-childs {
  85.   top: 100%;
  86.   left: -1px;
  87. }
  88.  
  89. .toc-entry:hover > .toc-entry-childs {
  90.   visibility: visible;
  91. }
  92.  
  93. .part {
  94.   margin-left: 2em;
  95. }
  96.  
  97. .command-synopsis-name {
  98.   font-weight: bold;
  99. }
  100.  
  101. .synopsis-param-group {
  102.   text-transform: uppercase;
  103. }
  104.  
  105. .cmd-name {
  106.   font-weight: bold;
  107. }
  108.  
  109. .param-group-description {
  110.   margin: 1em 0em;
  111. }
  112.  
  113. .param {
  114.   margin: 1em 0em;
  115. }
  116.  
  117. .param-usage {
  118.   font-weight: bold;
  119. }
  120.  
  121. .param-name {
  122.   font-weight: bold;
  123. }
  124.  
  125. .param-description {
  126.   margin-left: 2em;
  127. }
  128.