stylesheet.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345
  1. body { background-color: white; }
  2. /*
  3. ** The following rules apply principally to the line items shown in the
  4. ** Authors, Titles, Genres, Series, and Recently Added sections. Rules for the
  5. ** Descriptions section are grouped together later in the file.
  6. ** ------------------------------------------------------------------------
  7. */
  8. /*
  9. ** <div> grouping an author's works together
  10. ** Used in Sections:
  11. ** Authors
  12. **
  13. ** Minimize widows and orphans by logically grouping chunks
  14. ** Some reports of problems with Sony (ADE) ereaders
  15. ** ADE: page-break-inside:avoid;
  16. ** iBooks: display:inline-block;
  17. ** width:100%;
  18. */
  19. div.author_logical_group {
  20. page-break-inside:avoid;
  21. }
  22. /*
  23. ** Force page break when starting new initial letter
  24. ** Used in Sections:
  25. ** Authors
  26. ** Titles
  27. */
  28. div.initial_letter {
  29. page-break-before:always;
  30. }
  31. /*
  32. ** Author name
  33. ** Used in Sections:
  34. ** Authors
  35. ** Genres
  36. ** Recently Added
  37. */
  38. p.author_index {
  39. clear:both;
  40. font-size:large;
  41. font-weight:bold;
  42. text-align:left;
  43. margin-top:0.25px;
  44. margin-bottom:-2px;
  45. text-indent: 0em;
  46. }
  47. /*
  48. ** Index letter
  49. ** Used in Sections:
  50. ** Authors
  51. ** Titles
  52. */
  53. p.author_title_letter_index {
  54. clear:both;
  55. font-size:x-large;
  56. text-align:center;
  57. font-weight:bold;
  58. margin-top:0px;
  59. margin-bottom:0px;
  60. }
  61. /*
  62. ** Index letter
  63. ** Used in Sections:
  64. ** Series
  65. */
  66. p.series_letter_index {
  67. font-size:x-large;
  68. text-align:center;
  69. font-weight:bold;
  70. margin-top:1em;
  71. margin-bottom:0px;
  72. }
  73. /*
  74. ** Month-Year
  75. ** Used in Sections:
  76. ** Recently Added
  77. */
  78. p.date_index {
  79. clear:both;
  80. font-size:x-large;
  81. text-align:center;
  82. font-weight:bold;
  83. margin-top:1em;
  84. margin-bottom:0px;
  85. }
  86. p.date_read {
  87. clear:both;
  88. text-align:left;
  89. margin-top:0px;
  90. margin-bottom:0px;
  91. margin-left:6em;
  92. text-indent:-6em;
  93. }
  94. /*
  95. ** Series name
  96. ** Used in Sections:
  97. ** Authors
  98. ** Series
  99. ** Genres
  100. ** Recently Added
  101. ** Optimized for ePub
  102. */
  103. p.series {
  104. clear:both;
  105. font-style:italic;
  106. margin-top:0.10em;
  107. margin-bottom:0em;
  108. margin-left:1.5em;
  109. text-align:left;
  110. text-indent:-1.25em;
  111. }
  112. /*
  113. ** Series name
  114. ** Used in Sections:
  115. ** Authors
  116. ** Series
  117. ** Genres
  118. ** Recently Added
  119. ** Optimized for mobi
  120. */
  121. p.series_mobi {
  122. clear:both;
  123. font-style:italic;
  124. margin-top:0em;
  125. margin-bottom:0em;
  126. margin-left:0em;
  127. text-align:left;
  128. text-indent:-30px;
  129. }
  130. /*
  131. ** Section title
  132. ** Used in Sections:
  133. ** Authors
  134. ** Titles
  135. ** Series
  136. ** Genres
  137. ** Recently Added
  138. ** Descriptions
  139. */
  140. p.title {
  141. margin-top:0em;
  142. margin-bottom:0em;
  143. text-align:center;
  144. font-style:italic;
  145. font-size:xx-large;
  146. }
  147. /*
  148. ** Line item book listing
  149. ** Used in Sections:
  150. ** Authors
  151. ** Titles
  152. ** Series
  153. ** Genres
  154. ** Recently Added
  155. */
  156. p.line_item {
  157. clear: both;
  158. font-family:monospace;
  159. margin-top:0px;
  160. margin-bottom:0px;
  161. margin-left:2em;
  162. text-align:left;
  163. text-indent:-2em;
  164. }
  165. /*
  166. ** Prefix
  167. ** Used in Sections:
  168. ** Authors
  169. ** Titles
  170. ** Series
  171. ** Genres
  172. ** Recently Added
  173. */
  174. span.prefix {
  175. float:left;
  176. margin-left: 0.25em;
  177. text-align: left;
  178. vertical-align: middle;
  179. width: 1.5em;
  180. }
  181. /*
  182. ** Book details entry
  183. ** Used in Sections:
  184. ** Authors
  185. ** Titles
  186. ** Series
  187. ** Genres
  188. ** Recently Added
  189. */
  190. span.entry {
  191. font-family: serif;
  192. vertical-align:middle;
  193. }
  194. /*
  195. ** The following rules apply to Descriptions
  196. ** -----------------------------------------
  197. */
  198. /*
  199. ** Link to Series
  200. */
  201. a.series_id {
  202. font-style:normal;
  203. font-size:large;
  204. }
  205. /*
  206. ** Various dividers
  207. */
  208. hr.annotations_divider {
  209. width:50%;
  210. margin-left:1em;
  211. margin-top:0em;
  212. margin-bottom:0em;
  213. }
  214. hr.description_divider {
  215. width:90%;
  216. margin-left:5%;
  217. border-top: solid white 0px;
  218. border-right: solid white 0px;
  219. border-bottom: solid black 1px;
  220. border-left: solid white 0px;
  221. }
  222. hr.header_divider {
  223. width:100%;
  224. border-top: solid white 1px;
  225. border-right: solid white 0px;
  226. border-bottom: solid black 2px;
  227. border-left: solid white 0px;
  228. }
  229. hr.merged_comments_divider {
  230. width:80%;
  231. margin-left:10%;
  232. border-top: solid white 0px;
  233. border-right: solid white 0px;
  234. border-bottom: dashed gray 2px;
  235. border-left: solid white 0px;
  236. }
  237. /*
  238. ** Author name
  239. */
  240. p.author {
  241. clear:both;
  242. font-size:large;
  243. margin-top:0em;
  244. margin-bottom:0.1em;
  245. text-align: center;
  246. text-indent: 0em;
  247. }
  248. /*
  249. ** Formats
  250. */
  251. p.formats {
  252. font-size:90%;
  253. margin-top:0em;
  254. margin-bottom:0.5em;
  255. text-align: left;
  256. text-indent: 0.0in;
  257. }
  258. /*
  259. ** Genres
  260. */
  261. p.genres {
  262. font-style:normal;
  263. margin-top:0.5em;
  264. margin-bottom:0em;
  265. text-align: left;
  266. text-indent: 0.0in;
  267. }
  268. /*
  269. ** Series name
  270. */
  271. p.series_id {
  272. margin-top:0em;
  273. margin-bottom:0em;
  274. text-align:center;
  275. }
  276. /*
  277. ** Publisher, Publication Date
  278. */
  279. td.publisher, td.date {
  280. font-weight:bold;
  281. text-align:center;
  282. }
  283. /*
  284. ** Rating
  285. */
  286. td.rating{
  287. text-align:center;
  288. }
  289. /*
  290. ** Additional notes
  291. */
  292. td.notes {
  293. font-size: 100%;
  294. text-align:center;
  295. }
  296. /*
  297. ** Thumbnail
  298. */
  299. td.thumbnail img {
  300. -webkit-box-shadow: 4px 4px 12px #999;
  301. }
  302. /*
  303. ** Comments
  304. */
  305. div.description {
  306. margin: 0 0 0 0;
  307. text-indent: 1em;
  308. }
  309. div.description > p:first-child {
  310. margin: 0 0 0 0;
  311. text-indent: 0em;
  312. }