You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 1.8 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * Licensed to the Apache Software Foundation (ASF) under one or more
  3. * contributor license agreements. See the NOTICE file distributed with
  4. * this work for additional information regarding copyright ownership.
  5. * The ASF licenses this file to You under the Apache License, Version 2.0
  6. * (the "License"); you may not use this file except in compliance with
  7. * the License. You may obtain a copy of the License at
  8. *
  9. * http://www.apache.org/licenses/LICENSE-2.0
  10. *
  11. * Unless required by applicable law or agreed to in writing, software
  12. * distributed under the License is distributed on an "AS IS" BASIS,
  13. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14. * See the License for the specific language governing permissions and
  15. * limitations under the License.
  16. *
  17. */
  18. h2 {
  19. font-size: 200%;
  20. background-color: white;
  21. }
  22. h3 {
  23. font-size: 130%;
  24. color: white;
  25. background-color: #525D76;
  26. }
  27. h4 {
  28. color: white;
  29. background-color: #828DA6;
  30. }
  31. h5 {
  32. font-size: 100%;
  33. color: white;
  34. background-color: #a6adbe;
  35. margin-top: .5rem;
  36. margin-bottom: .5rem;
  37. }
  38. h6 {
  39. font-size: 100%;
  40. color: white;
  41. background-color: #c1c5d1;
  42. margin-top: .5rem;
  43. margin-bottom: .5rem;
  44. }
  45. h5 + p, h6 + p {
  46. margin-top: .5rem;
  47. margin-bottom: .5rem;
  48. }
  49. td {
  50. background-color: #eeeeee;
  51. color: black;
  52. }
  53. /* first row */
  54. table tr:first-child td {
  55. background-color: silver;
  56. color: black;
  57. }
  58. /* or th as first row */
  59. table th {
  60. background-color: silver;
  61. color: black;
  62. }
  63. pre {
  64. background-color: #efefef;
  65. }
  66. /* code snippets in examples and tutorials */
  67. .code {
  68. background: #EFEFEF;
  69. }
  70. /* highlight console output */
  71. .output {
  72. color: white;
  73. background: #837A67;
  74. }
  75. ul.inlinelist {
  76. list-style-type: none;
  77. margin-left: 0;
  78. padding: 0;
  79. }