You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

Style.css 1.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /* ============================= */
  2. /* Page Header Formattings */
  3. /* ============================= */
  4. #titlearea {
  5. background-color:#E1E7F4;
  6. background-image:url('nav_f.png');
  7. background-repeat:repeat-x;
  8. color:#20335A;
  9. font-weight:bold;
  10. text-shadow:0 1px 1px rgba(255, 255, 255, 0.9);
  11. }
  12. #projectlogo {
  13. padding-left: 10px;
  14. }
  15. /* ============================= */
  16. /* General Text Formattings */
  17. /* ============================= */
  18. body,table,div,p,dl {
  19. font-family:Lucida Grande, Verdana, Geneva, Arial, sans-serif;
  20. font-size:13px;
  21. line-height:1.3;
  22. }
  23. div.header, div.contents p {
  24. padding-left:12px;
  25. }
  26. /* ============================= */
  27. /* API Documentation Formattings */
  28. /* ============================= */
  29. div.contents table.memberdecls, .paramname {
  30. font-family:Consolas, Monaco, courier, sans-serif;
  31. font-size:105%;
  32. padding-right:20px;
  33. }
  34. /* ============================= */
  35. /* HTML Heading Formattings */
  36. /* ============================= */
  37. h1, h2, h3, h4 {
  38. font-family:Lucida Grande, Verdana, Geneva, Arial, sans-serif;
  39. }
  40. h1 {
  41. font-size:25px;
  42. margin-bottom:10px;
  43. }
  44. h2 {
  45. color:#42657B;
  46. font-size:17px;
  47. }
  48. h3 {
  49. font-size:15px;
  50. }
  51. h4 {
  52. font-size:13px;
  53. }
  54. /* ============================= */
  55. /* Code Snippet Formattings */
  56. /* ============================= */
  57. span.keyword {
  58. color:#008000;
  59. }
  60. span.keywordtype {
  61. color:#604020;
  62. }
  63. span.keywordflow {
  64. color:#e08000;
  65. }
  66. span.comment {
  67. color:#008000;
  68. }
  69. span.preprocessor {
  70. color:#806020;
  71. }
  72. span.stringliteral {
  73. color:#002080;
  74. }
  75. span.charliteral {
  76. color:#008080;
  77. }