/* ======================= Media & Support Queries ======================= Dropcaps */ @media only screen and (max-device-width: 750px) { p.dropcap::first-letter { initial-letter: 2; -webkit-initial-letter: 2; font-weight: normal; } } /* DIVISIONAL BRANDING */ @media amzn-kf8 { .banner_pelican { padding-left: 2.2em; } } /* SIDEBAR ADAPTIVE MEDIA QUERIES */ @media screen and (max-width: 512px), amzn-kf8 and (device-height:1024px) and (device-width: 758px) { .sidebar_wrapper { float: none; width: 100%; margin: 0em 0em 1.5em 0em; padding: 0px; } .sidebar_wrapper .stacked_image { width: 33.33%; /* Divide width of sidebar by the number of child images, in this example, 3 images. Works best with 3 to 5 square-aspect images. */ display: inline; margin-bottom: 1.5em; } .maincontent_wrapper { float: none; clear: both; width: 100%; } } /* VERTICAL CENTERING */ @supports (display: flex) { .cover_image, .image_full, .image_full_caption, .brand_logo_solo, .vertical_center { height: 100%; height: 100vh; margin-top: 0px !important; display: -webkit-flex; display: flex; flex-direction: column; justify-content: center; align-items: center; page-break-before: always; page-break-after: always; text-align: center; } .brand_logo_solo img, .vertical_center figure { margin-top: -60px; } } /* OPTIONAL SCALING THUMBNAILS [OPTIONAL / EXPERIMENTAL] Adds scaling animation to Thumbnail TOC Grid on desktop and web. */ .chapter_toc a:hover img, .chapter_toc a:focus img, .chapter_toc a:active img { -webkit-animation: scaleThumb 0.2s; animation: scaleThumb 0.2s; -webkit-transform: translate3d(0, 0, 0); /* Force hardware acceleration */ } @-webkit-keyframes scaleThumb { 0%, 100% {width: 100%;} 50% {width: 85%;} } @keyframes scaleThumb { 0%, 100% {width: 100%;} 50% {width: 85%;} } /* KINDLE-SPECIFIC */ @media not amzn-kf8 { .kf8_only { display: none; } } @media amzn-kf8 { .epub3_only { display: none; } } /* KF8 NIGHT-MODE FIX FOR HYPERLINKS */ @media amzn-kf8 { .toc_level1 a, .toc_level1 a:visited { color: #0066ff; text-decoration: none; border-bottom: none; } .toc_level2 a, .toc_level2 a:visited { color: #0066ff; text-decoration: none; border-bottom: none; } } /* SIDEBAR LAYOUT FOR KINDLE IOS AZK MODE */ @media amzn-kf8 and (device-height: 1024px) and (device-width: 768px), amzn-kf8 and (device-height: 768px) and (device-width: 1024px) { .sidebar_wrapper { display: block; width: 100%; text-align: left; float: none; font-size: 1em; margin-bottom: 2em; } .maincontent_wrapper { display: block; width: 100%; float: none; } .sidebar_wrapper p { text-align: left; font-size: 0.9em; } .sidebar_wrapper h5 { text-align: left; } }