@retiredbiker,
After classing the first paragraph, I paste into the CSS file a set of styles that I then modify for color, special fonts, shadowing to fit that particular book. This adds visual interest you can never seem to find in any Amazon delivered book.
Quote:
p.first-para::first-line {
font-style: italic;
font-size: 1.1em;
}
p.first-para::first-letter {
font-weight: bold;
font-style: italic;
color: #cdcdcd;
font-size: 2em;
text-shadow: 3px 1px 3px #000;
float: left;
margin-top: -0.3em;
margin-bottom: -0.3em;
padding-right: .2em;
}
|