/* -------------------------------------------------------------- * Blackstone Default Styles (V.032222) * * 03/25/22: * - added kindle-friendly styles for letters (have yet to test) * * 03/22/22: * - text message overhaul; kindle-compatible css * * 7/14/21: * - defined skew = oblique * * 5/28/21: * - added media query to correct kindle titlepage * image aspect ratio in landscape mode * * 5/26/21: * - added if-amazon-section-break classes for svg asterisms * - added p.not-amazon-section-break svg class to edit as necessary * (width of svg asterism) * * 4/9/21: * - added text-message background class: span.textbg * (to use in inDesign, select text message and * apply textbg character style) * - added attribute selectors for uppercase L and R * (text messages) * - moved Amazon css and media query to the bottom -----------------------------------------------------------------*/ svg, img { max-width: 100%; max-height: 100%; } /* will not let images grow beyond full screen */ /* ------------------------------------------- improve legibility https://friendsofepub.github.io/eBookTricks/ ----------------------------------------------*/ body { font-kerning: normal; font-variant: common-ligatures oldstyle-nums proportional-nums; font-feature-settings: "kern", "liga", "clig", "onum", "pnum"; } /* ------------------------------------------- body overrides ----------------------------------------------*/ p.body-basic { text-indent: 1.2em; } p.new-section-basic { margin-top: 2.4em; } span.skew { font-style: oblique; } /* ------------------------------------------- special alignment classes ----------------------------------------------*/ .blockquote_bq-single { margin-left: 1.2em; margin-right: 1.2em; margin-top: 2em !important; margin-bottom: 2em !important; } /* ------------------------------------------- text messages ----------------------------------------------*/ /* ibooks-friendly AND kindle-friendly */ /* ------------------------------------------- letters ----------------------------------------------*/ [class*="letters_letter"] { margin-left: 1.4em; margin-right: 1.4em; } [class*="letters_letter-short-sig"] { margin-left: 66% !important; } @media (max-width: 520px) { [class*="letters_letter-short-sig"] { margin-left: 56% !important; } /* kindle-friendly */ p.letters_letter-short-sig { margin-left: 56% !important; } } /* ------------------------------------------- non-amazon devices ----------------------------------------------*/ .if-amazon { display: none; } /* ------------------------------------------- amazon devices (fire/kindle) ----------------------------------------------*/ @media amzn-kf8, amzn-kf8 and (device-aspect-ratio: 1280/800), amzn-mobi { .not-amazon, .not-amazon-section-break { display: none; } .if-amazon, .if-amazon-section-break { display: inherit; } /* corrects left and right text message margins */ p.Text_Msg_Small_left, p.Text_Msg_Med_Left--2-lines-, p.Text_Msg_Long_Left--3-- { padding-left: 0 !important; } p.Text_Msg_small_right, p.Text_Msg_Med_Right--2-lines-, p.Text_Msg_Long_Right--3-- { padding-right: 0 !important; } /* kindle-friendly short letters */ p.letters_letter-short-date, p.letters_letter-short-addline, p.letters_letter-short-body, p.letters_letter-short-sig { margin-left: 1.4em; margin-right: 1.4em; } p.letters_letter-short-sig { margin-left: 66% !important; } } @media amzn-kf8 and (orientation: landscape), amzn-kf8 and (device-aspect-ratio: 1280/800) and (orientation: landscape), amzn-mobi and (orientation: landscape) { /* ensures correct image aspect ratio in landscape mode */ img, img._idGenObjectAttribute-1, img._idGenObjectAttribute-2 { width: auto !important; height: auto !important; } }