boostbook.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. th
  2. {
  3. font-weight: bold;
  4. text-align: center;
  5. }
  6. .title
  7. {
  8. font-weight: bold;
  9. font-size: 2pc;
  10. font-family: Times New Roman;
  11. margin-bottom: 1pc;
  12. text-align: center;
  13. }
  14. .toc
  15. {
  16. margin-left: 15%;
  17. margin-right: 15%;
  18. margin-top: 1pc;
  19. margin-bottom: 0pc;
  20. }
  21. div pre.programlisting, .refsynopsisdiv, pre.screen
  22. {
  23. margin-left: 3pc;
  24. margin-right: 3pc;
  25. }
  26. .computeroutput, .command
  27. {
  28. font-family: Lucida Console;
  29. font-size: 80%;
  30. }
  31. .table
  32. {
  33. text-align: center;
  34. }
  35. @media screen
  36. {
  37. a{ color: blue; }
  38. th, .title
  39. {
  40. background-color: lightskyblue;
  41. }
  42. .section .title
  43. {
  44. background-color: #DDD;
  45. text-align: left;
  46. }
  47. .table .title
  48. {
  49. background-color: white;
  50. text-align: left;
  51. }
  52. .toc
  53. {
  54. border: 0.2em ridge lightcoral;
  55. padding: 0.5pc;
  56. background-color: #DDD;
  57. }
  58. .programlisting, .table-programlisting, .screen
  59. {
  60. background-color: #EED;
  61. border: 0.2em ridge #EED;
  62. padding: 1pc;
  63. }
  64. .refsynopsisdiv
  65. {
  66. background-color: lightskyblue;
  67. border: 0.2em ridge cyan;
  68. padding: 1pc;
  69. font-family: Courier, Lucida Console;
  70. font-size: 80%;
  71. }
  72. .boost-head
  73. {
  74. background-color: #007F7F;
  75. border: 0.1em outset #007F7F;
  76. }
  77. .boost-headelem
  78. {
  79. color: white;
  80. font-family: Arial;
  81. font-weight: bold;
  82. }
  83. .table table, div.informaltable table, .section-title
  84. {
  85. background-color: #EEE;
  86. }
  87. table.boost-head tr td
  88. {
  89. border: 0.1em inset #007F7F;
  90. }
  91. table, td, th{ border: 0pc; }
  92. .table table tr td, div.informaltable table tr td
  93. {
  94. background-color: #CCC;
  95. }
  96. }
  97. @media print
  98. {
  99. body
  100. {
  101. text-align: justify;
  102. }
  103. a{ color: black; }
  104. .boost-head, table.boost-head tr td
  105. {
  106. border: 0em;
  107. }
  108. }
粤ICP备19079148号