View Single Post
Old 06-30-2020, 12:57 PM   #50
mirage
Zealot
mirage ought to be getting tired of karma fortunes by now.mirage ought to be getting tired of karma fortunes by now.mirage ought to be getting tired of karma fortunes by now.mirage ought to be getting tired of karma fortunes by now.mirage ought to be getting tired of karma fortunes by now.mirage ought to be getting tired of karma fortunes by now.mirage ought to be getting tired of karma fortunes by now.mirage ought to be getting tired of karma fortunes by now.mirage ought to be getting tired of karma fortunes by now.mirage ought to be getting tired of karma fortunes by now.mirage ought to be getting tired of karma fortunes by now.
 
Posts: 141
Karma: 2382428
Join Date: Feb 2013
Location: California
Device: OnePlus 6 phone, Kobo Clara HD, Libra H2O
Quote:
Originally Posted by JSWolf View Post
The font used (I think) in that S&S eBook is EBGaramond. I've seen it used in over S&S eBooks.

Here is the screen grab showing the page that Penguin uses in their eBooks. They embed fonts and that makes the eBook larger for no good reason. It looks worse on an eInk screen. The gray fonts are actually some shade of red and they show much lighter.
Following is the html from an example of that very page that's in the many Penguin/Random House ebooks. If displaying this here is inappropriate, let me know and I'll delete it.

Shift Light is the font. In a lot of cases, though not all, calibre indicates that the embedded Shift family fonts are invalid.

Code:
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops">
<head><title>Discover your next great read! PRHstyle.css</title>
<meta charset="utf-8"/><!--<link href="prhStyle.css" rel="stylesheet" type="text/css" /><link href="prhStyle-media-queries.css" rel="stylesheet" type="text/css" />-->
<style>

		@font-face {
		    font-family: "Shift Light";
		    font-style: normal;
		    font-weight: normal;
		    src: url('fonts/Shift-Light.otf');
		}
		@font-face {
		    font-family: "Shift Light";
		    font-style: italic;
		    font-weight: normal;
		    src: url('fonts/Shift-BoldItalic.otf');
		}
		@font-face {
		    font-family: "Fort-Book";
		    src: url("fonts/Fort-Book.otf");
		}
		#title {
			color: #222;
  			font-family: "Shift Light", Palatino, Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
			/*font-size:24px;*/
		}
		p {
			font-family: "Shift Light", Palatino, Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
/*			font-size:14px;*/
		}
		hr {
			border-top: 1px solid rgb(99, 99, 99);
		}
		#page {
			width:100%;
			margin-left:0%;
		}

		/*PRH Styles*/
		div,span,blockquote {margin:0;padding:0;outline:0;line-height:inherit;text-indent:0;}
		h1,h2,h3,h4,h5,h6 {text-align:center;margin:0 0 1em 0;font-weight:normal;line-height:inherit;}
		h1 {font-size:1.25em;}
		
		hr {
			border-style:solid;
			border-width:1px;
			border-bottom-width:0;
			border-radius:2px;
			margin:1em 0 1em 0;
		}
		
		p.center, div.center{
		    text-align:center;
    		    text-indent:0;
		}
		
		p.center{
			margin: 1em 0 0 0;
		}
		.page_top_padding {
			/*margin-top:10%;*/
		}
		
		.figure_small{
		    text-align:center;
   		    margin-top:1em;
    		    margin-bottom:1em;
		    page-break-inside:avoid;
		}
		
		p.x-small {
    		    font-size:0.85em;
		}
		
		/*Squeeze Styles*/
		
		.squeeze {display:inline-block;max-width:100%;text-indent:0;}
		.squeeze-amzn {display:none;}
		
		.squeeze40_0{
			width: 40%;
		}
		
		a, a:link, a:visited, a:hover, a:active {
			color:rgb(255, 102, 0);
			text-decoration:underline;
			-webkit-text-fill-color: rgb(255, 102, 0);
		}		
		
		span.orange{
			color:rgb(255, 102, 0);
		}
		
		@media amzn-mobi{
			.squeeze {width:auto;}
			.squeeze-epub {display:none;}
			.squeeze-amzn {display:inline;}
			.mobihide{display:none;}
		}

</style>
<meta content="urn:uuid:4d5489fe-4ef0-4e1f-8467-80dda09cd7d3" name="Adept.expected.resource"/>
</head>
<body>
<div class="page_top_padding" id="page">
	<div class="figure_small"><div class="squeeze squeeze40_0"><img alt="Penguin Random House Back Ad logo" class="squeeze-epub" src="images/next-reads_logo.jpg" style="width:100%;"/><img alt="Penguin Random House Next Reads logo" class="squeeze-amzn" height="179" src="images/next-reads_logo.jpg" width="224"/></div></div>
	<div class="center">
		<h1 id="title"><em>What’s next on<br/> your reading list?</em></h1>
		<p class="center"><a href="http://links.penguinrandomhouse.com/type/prhebooklanding/isbn/9780385351348/display/1">Discover your next<br/> great read!</a></p>
						<hr/>
						
		<p class="center x-small">Get personalized book picks and up-to-date news about this author.</p>
		<p class="center"><a href="http://links.penguinrandomhouse.com/type/prhebooklanding/isbn/9780385351348/display/2">Sign up now.</a></p>	
	</div>
</div>
</body></html>
mirage is offline   Reply With Quote