parsesample.css 806 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. body
  2. {
  3. font-family: Arial, Verdana, sans-serif;
  4. font-size: 12px;
  5. color: #222;
  6. background-color: #fff;
  7. }
  8. /* preserved spaces for rtl list item bullets. (#6249)*/
  9. ol,ul,dl
  10. {
  11. padding-right:40px;
  12. }
  13. h1,h2,h3,h4
  14. {
  15. font-family: Georgia, Times, serif;
  16. }
  17. h1.lightBlue
  18. {
  19. color: #00A6C7;
  20. font-size: 1.8em;
  21. font-weight:normal;
  22. }
  23. h3.green
  24. {
  25. color: #739E39;
  26. font-weight:normal;
  27. }
  28. span.markYellow { background-color: yellow; }
  29. span.markGreen { background-color: lime; }
  30. img.left
  31. {
  32. padding: 5px;
  33. margin-right: 5px;
  34. float:left;
  35. border:2px solid #DDD;
  36. }
  37. img.right
  38. {
  39. padding: 5px;
  40. margin-right: 5px;
  41. float:right;
  42. border:2px solid #DDD;
  43. }
  44. a.green
  45. {
  46. color:#739E39;
  47. }
  48. table.grey
  49. {
  50. background-color : #F5F5F5;
  51. }
  52. table.grey th
  53. {
  54. background-color : #DDD;
  55. }
  56. ul.square
  57. {
  58. list-style-type : square;
  59. }