home *** CD-ROM | disk | FTP | other *** search
/ Chip 2011 November / CHIP_2011_11.iso / Programy / Narzedzia / Calibre / calibre-0.8.18.msi / file_536 < prev    next >
Text File  |  2011-02-05  |  3KB  |  154 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.     border: thin solid black;
  31.     margin: 1em;
  32.     padding: 1em;
  33.     -webkit-border-radius:8px;
  34.     }
  35.  
  36. /*
  37. **    Title
  38. */
  39. table.cbj_header td.cbj_title {
  40.     font-size: x-large;
  41.     font-style: italic;
  42.     text-align: center;
  43. }
  44.  
  45. /*
  46. **    Series
  47. */
  48. table.cbj_header td.cbj_series {
  49.     font-size: medium;
  50.     text-align: center;
  51. }
  52.  
  53. /*
  54. **    Author
  55. */
  56. table.cbj_header td.cbj_author {
  57.     font-size: medium;
  58.     text-align: center;
  59. }
  60.  
  61. /*
  62. **    Publisher/published
  63. */
  64. table.cbj_header td.cbj_pubdata {
  65.     text-align: center;
  66. }
  67.  
  68. /*
  69. **    Table containing Rating and Tags
  70. */
  71. table.cbj_header {
  72.     width: 100%;
  73.     }
  74.  
  75. /*
  76. **    General formatting for banner labels
  77. */
  78. table.cbj_header td.cbj_label {
  79.     font-family: sans-serif;
  80.     text-align: right;
  81.     width: 33%;
  82.     }
  83.  
  84. /*
  85. **    General formatting for banner content
  86. */
  87. table.cbj_header td.cbj_content {
  88.     font-family: sans-serif;
  89.     text-align: left;
  90.     width:67%;
  91.     }
  92.  
  93. /*
  94. ** Metadata divider
  95. */
  96. hr.metadata_divider {
  97.     width:90%;
  98.     margin-left:5%;
  99.     border-top: solid white 0px;
  100.     border-right: solid white 0px;
  101.     border-bottom: solid black 1px;
  102.     border-left: solid white 0px;
  103.     }
  104.  
  105.  
  106.  
  107. /*
  108. **    To skip a banner item (Series|Published|Rating|Tags),
  109. **    edit the appropriate CSS rule below.
  110. */
  111. table.cbj_header tr.cbj_series {
  112.     /* Uncomment the next line to remove 'Series' from banner section */
  113.     /* display:none; */
  114.     }
  115.  
  116. table.cbj_header tr.cbj_pubdata {
  117.     /* Uncomment the next line to remove 'Published (year of publication)' from banner section */
  118.     /* display:none; */
  119.     }
  120.  
  121. table.cbj_header tr.cbj_rating {
  122.     /* Uncomment the next line to remove 'Rating' from banner section */
  123.     /* display:none; */
  124.     }
  125.  
  126. table.cbj_header tr.cbj_tags {
  127.     /* Uncomment the next line to remove 'Tags' from banner section */
  128.     /* display:none; */
  129.     }
  130.  
  131. hr {
  132.     /* This rule controls formatting for any hr elements contained in the jacket */
  133.     border-top: 0px solid white;
  134.     border-right: 0px solid white;
  135.     border-bottom: 2px solid black;
  136.     border-left: 0px solid white;
  137.     margin-left: 10%;
  138.     width: 80%;
  139.     }
  140.  
  141. .cbj_footer {
  142.     font-family: sans-serif;
  143.     font-size: small;
  144.     margin-top: 8px;
  145.     text-align: center;
  146.     }
  147. .cbj_smallcaps {
  148.     font-size: 90%;
  149.     }
  150.  
  151. .cbj_comments {
  152.     font-family: sans-serif;
  153.     }
  154.