home *** CD-ROM | disk | FTP | other *** search
/ Maximum CD 2007 September / maximum-cd-2007-09.iso / Assets / data / AssaultCube_v0.93.exe / docs / styles / ac.css next >
Encoding:
Cascading Style Sheet File  |  2007-05-31  |  2.0 KB  |  140 lines

  1. ∩╗┐/* ZLIB licensed, (C) 2007 Adrian 'driAn' Henke, http://www.sprintf.org */
  2.  
  3. /* 
  4.     common styles for all documentation pages 
  5. */
  6.  
  7. /* main layout */
  8.  
  9. html
  10. {
  11.     margin: 0;
  12.     padding: 0;
  13.     background-color: #343434; /* firefox xslt bug */
  14. }
  15.  
  16. body
  17. {
  18.     margin: 0;
  19.     padding: 10px;
  20.     /*font-family: Verdana, Sans-Serif;*/
  21.     font-family: "Bitstream Vera Serif";
  22.     font-size: 12px;
  23. }
  24.  
  25. div#main
  26. {
  27.     position: relative;
  28.     margin: 0 auto 0 auto;
  29.     width: 740px;
  30. }
  31.  
  32. div#main div#title
  33. {
  34.     margin: 0 auto 0 auto;
  35.     padding: 0 10px 0 10px;
  36.     height: 20px;
  37.     background-color: Black;
  38.     color: White;
  39.     vertical-align: middle;
  40.     border-left: solid 10px #343434;
  41.     border-right: solid 10px #343434;    
  42. }
  43.  
  44. div#main div#title h1
  45. {
  46.     margin: 0;
  47.     padding: 0;
  48.     height: 1em;
  49.     font-family: Courier New, Sans-Serif;
  50.     font-size: 18px;
  51.     font-weight: bold;
  52. }
  53.  
  54. div#main div#content
  55. {
  56.     padding: 10px;
  57.     border: solid 1px black;
  58.     background-color: #666666;    
  59. }
  60.  
  61. div#main div#footer
  62. {
  63.     padding: 0 10px 0 10px;
  64.     height: 20px;
  65.     text-align: right;
  66.     color:White;
  67.     background-color: Black;
  68.     border-left: solid 10px #343434;
  69.     border-right: solid 10px #343434;        
  70.     font-family: Courier New, Sans-Serif;
  71. }
  72.  
  73. /* version */
  74.  
  75. div#main div#version
  76. {
  77.     padding: 0;
  78.     margin: 0 auto 0 auto;
  79.     width: 720px;
  80.     height: 55px;
  81.     
  82.     font-family: Courier New, Sans-Serif;
  83.     font-size: 55px;
  84.     font-weight: bold;
  85.     text-align: right;
  86.     color: #555555;
  87. }
  88.  
  89.  
  90. /* default formatting */
  91.  
  92. h1
  93. {
  94.     font-family: Courier New, Sans-Serif;
  95.     font-size: 22px;
  96. }
  97.  
  98. h2
  99. {
  100.     font-family: Courier New, Sans-Serif;
  101.     font-size: 18px;
  102. }
  103.  
  104. h3
  105. {
  106.     font-family: Courier New, Sans-Serif;
  107.     font-size: 16px;
  108. }
  109.  
  110. a, a:hover, a:visited
  111. {
  112.     color: #333333;
  113. }
  114.  
  115. p
  116. {
  117.     padding: 0;
  118.     margin: 10px 0 10px 0;
  119. }
  120.  
  121. ul
  122. {
  123.     list-style-type:square;
  124. }
  125.  
  126. /* code */
  127.  
  128. div.code
  129. {
  130.     font-family: Courier New, Sans-Serif;
  131.     margin: 1em 0 1em 0;
  132.     padding: 0 0 0 1em;
  133. }
  134.  
  135. span.code
  136. {
  137.     font-family: Courier New, Sans-Serif;
  138.     margin: 0;
  139.     padding: 0;
  140. }