boostbook.css 1.7 KB

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