Difference between revisions of "Tod Naturlich/story text.css"

From All The Fallen Stories
Jump to navigation Jump to search
m (Edited settings)
(Edited settings)
Line 7: Line 7:
     font-size: 1.2em;
     font-size: 1.2em;
     text-align: justify;
     text-align: justify;
}
.mw-body-content .toc li {
    font-size: 1em;
}
}


/* The default for the wiki makes it difficult to "see" paragraph breaks, this makes it better for reading. */
/* The default for the wiki makes it difficult to "see" paragraph breaks, this makes it better for reading. */


p {
.mw-body-content p {
     line-height: 130% !important;
     line-height: 130% !important;
     margin: 0.8em 0 !important;
     margin: 0.8em 0 !important;
Line 18: Line 22:
/* Colors for visited and unvisited links were too alike, and too close to black, so they hide in the middle of text. */
/* 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) {
.mw-body-content a:link:not(.new) {
     color: #0073e6; /* Light blue */
     color: #0073e6; /* Light blue */
}
}


a:visited:not(.new) {
.mw-body-content a:visited:not(.new) {
     color: #6600ff; /* Purple */
     color: #6600ff; /* Purple */
}
}
Line 32: Line 36:
}
}


h1, h2, h3, h4, h5, h6 {
.mw-body-content h1, .mw-body-content h2, .mw-body-content h3, .mw-body-content h4, .mw-body-content h5, .mw-body-content h6 {
     font-family: Arial, Helvetica, sans-serif !important;
     font-family: Arial, Helvetica, sans-serif !important;
}
}


h1 {
.mw-body-content h1 {
     font-size: 2em !important;
     font-size: 2em !important;
}
}


h2 {
.mw-body-content h2 {
     font-size: 1.6em !important;
     font-size: 1.6em !important;
}
}


h3 {
.mw-body-content h3 {
     font-size: 1.4em !important;
     font-size: 1.4em !important;
}
}


h4, h5, h6 {
.mw-body-content h4, .mw-body-content h5, .mw-body-content h6 {
     font-size: 1.2em !important;
     font-size: 1.2em !important;
}
}


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

Revision as of 09:15, 3 September 2017

/***** General Style for Stories *****/

/* Long lines and long paragraphs read better in bigger font with serif, and look better justified. */

.mw-body-content p, .mw-body-content li {

   font-family: "Times New Roman", Times, serif;
   font-size: 1.2em;
   text-align: justify;

}

.mw-body-content .toc li {

   font-size: 1em;

}

/* The default for the wiki makes it difficult to "see" paragraph breaks, this makes it better for reading. */

.mw-body-content 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. */

.mw-body-content a:link:not(.new) {

   color: #0073e6; /* Light blue */

}

.mw-body-content a:visited:not(.new) {

   color: #6600ff; /* Purple */

}

/* The wiki generated title can be extremely long, I don't like it, so I reduce it. */

.firstHeading {

   font-size: 0.5em !important;

}

.mw-body-content h1, .mw-body-content h2, .mw-body-content h3, .mw-body-content h4, .mw-body-content h5, .mw-body-content h6 {

   font-family: Arial, Helvetica, sans-serif !important;

}

.mw-body-content h1 {

   font-size: 2em !important;

}

.mw-body-content h2 {

   font-size: 1.6em !important;

}

.mw-body-content h3 {

   font-size: 1.4em !important;

}

.mw-body-content h4, .mw-body-content h5, .mw-body-content h6 {

   font-size: 1.2em !important;

}

/* */