Tod Naturlich/story text.css: Difference between revisions

From All The Fallen Stories
Jump to navigation Jump to search
TodNaturlich (talk | contribs)
m Edited settings
TodNaturlich (talk | contribs)
Edited settings
Line 1: Line 1:
/***** General Style for Stories *****/
/* Long lines and long paragraphs read better in bigger font with serif, and look better justified. */
p, li {
p, li {
     font-family: "Times New Roman", Times, serif;
     font-family: "Times New Roman", Times, serif;
Line 4: Line 8:
     text-align: justify;
     text-align: justify;
}
}
/* The default for the wiki makes it difficult to "see" paragraph breaks, this makes it better for reading. */


p {
p {
Line 9: Line 15:
     margin: 0.8em 0 !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) {
a:link:not(.new) {
     color: #00ccff;
     color: #0073e6; /* Light blue */
}
}


a:visited:not(.new) {
a:visited:not(.new) {
     color: #751aff;
     color: #6600ff; /* Purple */
}
 
a.new:link {
    color: #a55858;
}
}


/* <noinclude>[[Category:StyleSheets|story text.css]]</noinclude> */
/* <noinclude>[[Category:StyleSheets|story text.css]]</noinclude> */

Revision as of 08:46, 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 */

}

/* */