Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

HelpPage.css 2.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. .help-page h1,
  2. .help-page .h1,
  3. .help-page h2,
  4. .help-page .h2,
  5. .help-page h3,
  6. .help-page .h3,
  7. #body.help-page,
  8. .help-page-table th,
  9. .help-page-table pre,
  10. .help-page-table p {
  11. font-family: "Segoe UI Light", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
  12. }
  13. .help-page pre.wrapped {
  14. white-space: -moz-pre-wrap;
  15. white-space: -pre-wrap;
  16. white-space: -o-pre-wrap;
  17. white-space: pre-wrap;
  18. }
  19. .help-page .warning-message-container {
  20. margin-top: 20px;
  21. padding: 0 10px;
  22. color: #525252;
  23. background: #EFDCA9;
  24. border: 1px solid #CCCCCC;
  25. }
  26. .help-page-table {
  27. width: 100%;
  28. border-collapse: collapse;
  29. text-align: left;
  30. margin: 0px 0px 20px 0px;
  31. border-top: 1px solid #D4D4D4;
  32. }
  33. .help-page-table th {
  34. text-align: left;
  35. font-weight: bold;
  36. border-bottom: 1px solid #D4D4D4;
  37. padding: 5px 6px 5px 6px;
  38. }
  39. .help-page-table td {
  40. border-bottom: 1px solid #D4D4D4;
  41. padding: 10px 8px 10px 8px;
  42. vertical-align: top;
  43. }
  44. .help-page-table pre,
  45. .help-page-table p {
  46. margin: 0px;
  47. padding: 0px;
  48. font-family: inherit;
  49. font-size: 100%;
  50. }
  51. .help-page-table tbody tr:hover td {
  52. background-color: #F3F3F3;
  53. }
  54. .help-page a:hover {
  55. background-color: transparent;
  56. }
  57. .help-page .sample-header {
  58. border: 2px solid #D4D4D4;
  59. background: #00497E;
  60. color: #FFFFFF;
  61. padding: 8px 15px;
  62. border-bottom: none;
  63. display: inline-block;
  64. margin: 10px 0px 0px 0px;
  65. }
  66. .help-page .sample-content {
  67. display: block;
  68. border-width: 0;
  69. padding: 15px 20px;
  70. background: #FFFFFF;
  71. border: 2px solid #D4D4D4;
  72. margin: 0px 0px 10px 0px;
  73. }
  74. .help-page .api-name {
  75. width: 40%;
  76. }
  77. .help-page .api-documentation {
  78. width: 60%;
  79. }
  80. .help-page .parameter-name {
  81. width: 20%;
  82. }
  83. .help-page .parameter-documentation {
  84. width: 40%;
  85. }
  86. .help-page .parameter-type {
  87. width: 20%;
  88. }
  89. .help-page .parameter-annotations {
  90. width: 20%;
  91. }
  92. .help-page h1,
  93. .help-page .h1 {
  94. font-size: 36px;
  95. line-height: normal;
  96. }
  97. .help-page h2,
  98. .help-page .h2 {
  99. font-size: 24px;
  100. }
  101. .help-page h3,
  102. .help-page .h3 {
  103. font-size: 20px;
  104. }
  105. #body.help-page {
  106. font-size: 14px;
  107. line-height: 143%;
  108. color: #333;
  109. }
  110. .help-page a {
  111. color: #0000EE;
  112. text-decoration: none;
  113. }