1final.css 932 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. a {
  2. color: #C9C9C9;
  3. text-decoration: none;
  4. background-color : inherit;
  5. }
  6. a:link {
  7. color: #C9C9C9;
  8. text-decoration: none;
  9. background-color : inherit;
  10. }
  11. a:visited {
  12. color: #C9C9C9;
  13. text-decoration: none;
  14. background-color : inherit;
  15. }
  16. a:active {
  17. color: #000;
  18. text-decoration: none;
  19. background-color : inherit;
  20. }
  21. a:hover {
  22. color: #000;
  23. text-decoration: underline;
  24. background-color : inherit;
  25. }
  26. body {
  27. margin: 0px 20px 20px 0px;
  28. font-size: 11px;
  29. font-family: Lucila, Arial, Helvetica;
  30. background: #B1DAB2;
  31. color: #000;
  32. }
  33. .tab a,
  34. .tab a:link,
  35. .tab a:visited {
  36. background: transparent;
  37. color: #C9C9C9;
  38. text-decoration: none;
  39. }
  40. .tab a:hover,
  41. .tab a:active {
  42. background: transparent;
  43. color: #748C33;
  44. text-decoration: underline;
  45. }
  46. .header {
  47. border-bottom: 1px solid #99C;
  48. font-size: 37px;
  49. font-family: Garamond, Lucila, Helvetica;
  50. padding: 3px;
  51. }
  52. .content {
  53. padding: 5px;
  54. color: #424242;
  55. }