epub - Python library for generating standard-compliant EPUB 3.0 books.

git clone https://benconnors.ca/git-repos/epub

Log | Files | Refs

stylesheet.css (580B) - raw


      1 body {
      2     margin-left: 5%;
      3     margin-right: 5%;
      4     margin-top: 5%;
      5     margin-bottom: 5%;
      6     text-align: justify;
      7 }
      8 
      9 pre {
     10     font-size: x-small;
     11 }
     12 
     13 h1 {
     14     text-align: center;
     15 }
     16 
     17 h2 {
     18     text-align: center;
     19 }
     20 
     21 h3 {
     22     text-align: center;
     23 }
     24 
     25 h4 {
     26     text-align: center;
     27 }
     28 
     29 p {
     30     margin-bottom: 0.5em;
     31 }
     32 
     33 .italic {
     34     font-style: italic;
     35 }
     36 
     37 .quote {
     38     font-style: italic;
     39     text-align: center;
     40 }
     41 
     42 .center {
     43     display: block;
     44     margin-left: auto;
     45     margin-right: auto;
     46 }
     47 
     48 nav ol {
     49     list-style-type: none;
     50 }