home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 April / Chip_2004-04_cd1.bin / tema / arachne / archn170.exe / EXAMPLES / SAMPLE.CSS < prev    next >
Encoding:
Cascading Style Sheet File  |  2001-01-20  |  616 b   |  59 lines

  1.  
  2. body
  3. {
  4.  background-color:white;
  5.  color:navy;
  6.  font-style: italic;
  7.  font-size: 16px;
  8. }
  9.  
  10. a:hover
  11. {
  12.  color: red;
  13.  text-decoration: underline;
  14. }
  15.  
  16. a:link
  17. {
  18.  color: black;
  19. }
  20.  
  21. .emph:link
  22. {
  23.  font-weight: bold;
  24.  font-size: 20px;
  25.  color: green;
  26. }
  27.  
  28. .menu
  29. {
  30.  background-color: silver;
  31.  font-size: 20px;
  32. }
  33.  
  34. .black td
  35. {
  36.  background-color: black;
  37.  color: white;
  38.  font-size: 10px;
  39. }
  40.  
  41. .white td
  42. {
  43.  background-color: white;
  44.  color: black;
  45.  font-size: 24px;
  46. }
  47.  
  48. .style2 p
  49. {
  50.  color:black;
  51.  font-weight: bold;
  52.  font-size: 10px;
  53.  font-style: none;
  54. }
  55.  
  56. .weird
  57. {
  58.  background: lime;
  59. }