home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 January / Chip_2004-01_cd1.bin / tema / vema / css / vema_basic.css < prev    next >
Cascading Style Sheet File  |  2003-09-04  |  2KB  |  128 lines

  1. /* this CSS should be extended by "import and override" */
  2. @import url(custom.css);
  3.  
  4. html, body
  5. {
  6.   font-family: Tahoma, Helvetica, Verdana, Arial, sans-serif; 
  7.   background: white;
  8.   color: black;
  9.   margin: 0;
  10.   padding: 0;
  11. }
  12.  
  13. a
  14. {
  15.   color: rgb(10,85,163);
  16.   font-weight: bold;
  17.   text-decoration: none;
  18.   cursor: pointer;                     /* CSS2 */
  19. }
  20.  
  21. a:hover
  22. {
  23.   color: rgb(255,127,0);
  24. }  
  25.  
  26. ul.undecored
  27. {
  28.   list-style-type: none;
  29. }
  30.  
  31. /* - ARTICLE ------------------------------------------------------------ */
  32.  
  33. .article
  34. {
  35.   line-height: 110%;
  36.   /* TEST
  37.   */
  38.   padding-left: 2ex;
  39.   padding-right: 2ex;
  40. }
  41.  
  42. h1, .article h1
  43. {
  44.   font-size: 144%;
  45.   margin-top: 1ex;
  46. }
  47.  
  48. /* MSIE neumi
  49. .article h1:first-child
  50. {
  51.   padding-bottom: 20px;
  52. }
  53. */
  54.  
  55. h2, .article h2
  56. {
  57.   font-size: 120%;
  58. }
  59.  
  60. h3, .article h3
  61. {
  62.   font-size: 100%;
  63. }
  64.  
  65. h3, .article h4
  66. {
  67.   font-size: 95%;
  68.   font-weight: bold;
  69. }
  70.  
  71. .article p.emphasized
  72. {
  73.   font-weight: bold;
  74. }
  75.  
  76. .article p.emphasized:first-line
  77. {
  78.   color: rgb(255,127,0);
  79. }
  80.  
  81. .article table
  82. {
  83.   border-width: 1px; 
  84.   border-style: solid; 
  85.   border-color: black;
  86.   border-collapse: collapse;            /* CSS2 */
  87.   border-spacing: 0px;                  /* CSS2 */
  88. }
  89.  
  90. .article table td 
  91. {
  92.   border-width: 1px; 
  93.   border-style: solid; 
  94.   border-color: black;
  95.   padding: 4px;
  96.  
  97. ul.subCategories
  98. {
  99. }
  100.  
  101. ul.subCategories li
  102. {
  103.   margin-top: 0px; 
  104.   margin-bottom: 0px;
  105. }
  106.   
  107. /* 
  108. .article table tr:first-child
  109. {
  110.   font-weight: bold;
  111. }
  112. */
  113.  
  114. /* - FOOT --------------------------------------------------------------- */
  115.  
  116. .foot
  117. {
  118.   font-size: 82%;
  119.   vertical-align: middle;
  120.   text-align: center;
  121.   font-size: small;
  122.   border-style: solid;
  123.   border-width: 1px 0px 1px 0px;
  124.   border-color: rgb(80,80,80);
  125. }
  126.  
  127.