Last active
April 4, 2019 11:52
-
-
Save kongou-ae/20b7b1ca7eb7a820a87cabff32ed8a83 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* @pageは印刷ページについて指定する特別なルールです */ | |
@page { | |
/* sizeは印刷するページの大きさを指定します。 | |
* 下のような幅と高さの指定以外にも、A4やJIS-B5などが指定できます。 | |
*/ | |
size: 182mm 257mm; | |
} | |
[data-type="titlepage"] { | |
-epubx-flow-into: titlepage; | |
} | |
@-epubx-page-master titlepagepage { | |
@-epubx-partition body { | |
-epubx-flow-from: titlepage; | |
-epubx-required: true; | |
left: 10mm; | |
right: 10mm; | |
top: 32pt; | |
bottom: 12pc; | |
} | |
@-epubx-partition logos { | |
-epubx-flow-from: logo; | |
-epubx-required: true; | |
left: 10mm; | |
right: 10mm; | |
bottom: 4.3pc; | |
} | |
background: #435772; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment