home *** CD-ROM | disk | FTP | other *** search
/ Freelog 121 / FreelogMagazineJuilletAout2014-No121.iso / Bureautique / calibre / calibre-1.35.0.msi / file_560 < prev    next >
Text File  |  2014-04-08  |  3KB  |  150 lines

  1. /*
  2. **    Book Jacket generation
  3. **
  4. **    The template for Book Jackets is template.xhtml
  5. **    This CSS is inserted into the generated HTML at conversion time
  6. **
  7. **    Users can control parts of the presentation of a generated book jacket by
  8. **     editing this file and template.xhtml
  9. **
  10. **    The general form of a generated Book Jacket:
  11. **
  12. **                      Title
  13. **    Series: series [series_index]
  14. **    Published: year_of_publication
  15. **    Rating: #_of_stars
  16. **    Tags: tag1, tag2, tag3 ...
  17. **
  18. **    Comments
  19. **
  20. **    If a book does not have Series information, a date of publication, a rating or tags
  21. **    the corresponding row is automatically removed from the generated book jacket.
  22. */
  23.  
  24. /*
  25. **    Banner
  26. **    Only affects EPUB, kindle ignores this type of formatting
  27. */
  28. .cbj_banner {
  29.     background: #eee;
  30.     color: black;
  31.     border: thin solid black;
  32.     margin: 1em;
  33.     padding: 1em;
  34.     -webkit-border-radius:8px;
  35.     }
  36.  
  37. /*
  38. **    Title
  39. */
  40. table.cbj_header td.cbj_title {
  41.     font-size: 1.5em;
  42.     font-style: italic;
  43.     text-align: center;
  44. }
  45.  
  46. /*
  47. **    Series
  48. */
  49. table.cbj_header td.cbj_series {
  50.     text-align: center;
  51. }
  52.  
  53. /*
  54. **    Author
  55. */
  56. table.cbj_header td.cbj_author {
  57.     text-align: center;
  58. }
  59.  
  60. /*
  61. **    Publisher/published
  62. */
  63. table.cbj_header td.cbj_pubdata {
  64.     text-align: center;
  65. }
  66.  
  67. /*
  68. **    Table containing Rating and Tags
  69. */
  70. table.cbj_header {
  71.     width: 100%;
  72.     }
  73.  
  74. /*
  75. **    General formatting for banner labels
  76. */
  77. table.cbj_header td.cbj_label {
  78.     font-family: sans-serif;
  79.     text-align: right;
  80.     width: 33%;
  81.     }
  82.  
  83. /*
  84. **    General formatting for banner content
  85. */
  86. table.cbj_header td.cbj_content {
  87.     font-family: sans-serif;
  88.     text-align: left;
  89.     width:67%;
  90.     }
  91.  
  92. /*
  93. ** Metadata divider
  94. */
  95. hr.metadata_divider {
  96.     width:90%;
  97.     margin-left:5%;
  98.     border-top: solid white 0px;
  99.     border-right: solid white 0px;
  100.     border-bottom: solid black 1px;
  101.     border-left: solid white 0px;
  102.     }
  103.  
  104.  
  105.  
  106. /*
  107. **    To skip a banner item (Series|Published|Rating|Tags),
  108. **    edit the appropriate CSS rule below.
  109. */
  110. table.cbj_header tr.cbj_series {
  111.     /* Uncomment the next line to remove 'Series' from banner section */
  112.     /* display:none; */
  113.     }
  114.  
  115. table.cbj_header tr.cbj_pubdata {
  116.     /* Uncomment the next line to remove 'Published (year of publication)' from banner section */
  117.     /* display:none; */
  118.     }
  119.  
  120. table.cbj_header tr.cbj_rating {
  121.     /* Uncomment the next line to remove 'Rating' from banner section */
  122.     /* display:none; */
  123.     }
  124.  
  125. table.cbj_header tr.cbj_tags {
  126.     /* Uncomment the next line to remove 'Tags' from banner section */
  127.     /* display:none; */
  128.     }
  129.  
  130. hr {
  131.     /* This rule controls formatting for any hr elements contained in the jacket */
  132.     border-top: 0px solid white;
  133.     border-right: 0px solid white;
  134.     border-bottom: 2px solid black;
  135.     border-left: 0px solid white;
  136.     margin-left: 10%;
  137.     width: 80%;
  138.     }
  139.  
  140. .cbj_footer {
  141.     font-family: sans-serif;
  142.     font-size: 0.8em;
  143.     margin-top: 8px;
  144.     text-align: center;
  145.     }
  146.  
  147. .cbj_comments {
  148.     font-family: sans-serif; 
  149.     }
  150.