Tod Naturlich/story text.css: Difference between revisions
Jump to navigation
Jump to search
TodNaturlich (talk | contribs) Edited settings |
TodNaturlich (talk | contribs) m Edited settings |
||
Line 29: | Line 29: | ||
h1, h2, h3, h4, h5, h6 { | h1, h2, h3, h4, h5, h6 { | ||
font-family: Arial, Helvetica, sans-serif; | font-family: Arial, Helvetica, sans-serif !important; | ||
} | } | ||
h1 { | h1 { | ||
font-size: 0.5em; | font-size: 0.5em !important; | ||
} | } | ||
h2 { | h2 { | ||
font-size: 2em; | font-size: 2em !important; | ||
} | } | ||
h3 { | h3 { | ||
font-size: 1.8em; | font-size: 1.8em !important; | ||
} | } | ||
h4 { | h4 { | ||
font-size: 1.5em; | font-size: 1.5em !important; | ||
} | } | ||
h5, h6 { | h5, h6 { | ||
font-size: 1.2em; | font-size: 1.2em !important; | ||
} | } | ||
/* <noinclude>[[Category:StyleSheets|story text.css]]</noinclude> */ | /* <noinclude>[[Category:StyleSheets|story text.css]]</noinclude> */ |
Revision as of 08:58, 3 September 2017
/***** General Style for Stories *****/
/* Long lines and long paragraphs read better in bigger font with serif, and look better justified. */
p, li {
font-family: "Times New Roman", Times, serif; font-size: 1.2em; text-align: justify;
}
/* The default for the wiki makes it difficult to "see" paragraph breaks, this makes it better for reading. */
p {
line-height: 130% !important; margin: 0.8em 0 !important;
}
/* Colors for visited and unvisited links were too alike, and too close to black, so they hide in the middle of text. */
a:link:not(.new) {
color: #0073e6; /* Light blue */
}
a:visited:not(.new) {
color: #6600ff; /* Purple */
}
/* The wiki generated title can be extremely long, I don't like it, so I reduce it, and in each chapter use h2 for my real title. */
h1, h2, h3, h4, h5, h6 {
font-family: Arial, Helvetica, sans-serif !important;
}
h1 {
font-size: 0.5em !important;
}
h2 {
font-size: 2em !important;
}
h3 {
font-size: 1.8em !important;
}
h4 {
font-size: 1.5em !important;
}
h5, h6 {
font-size: 1.2em !important;
}
/* */