HG Collins’ Handy Styling Guide

From All The Fallen Stories
Revision as of 02:19, 12 January 2022 by Hgcollins (talk | contribs)
Jump to navigation Jump to search


This is a guide for anyone who isn't all that familiar with CSS, but would like to add some style elements to their stories. These are simple things you can copy and paste into your stylesheet or in between the CSS tags at the top of a story page. Here is the link for setting up CSS on your stories. It's pretty simple to use once you get the hang of it and if you're using a browser like Chrome, you can right click and inspect element to look at a page's code and test things out to see what they'll look like. Using the "Show preview" button will come in handy, too. If you're using a stylesheet instead of inline CSS, keep in mind your CSS changes might not appear right away if your browser has already cached them to save on load time. This is where using a private browser window comes in handy.


Most of the CSS code templates I include in this page will deal with ease of readability. I'm real big on making my stories as easy to read as possible.


Paragraph Style


This code will make all of your paragraphs larger and make your stories easier to read. You can change the number to make it bigger or smaller. You can also add a different font codes from the font section.

    p {
      font-size: 16pt;
    }


Changing the size of your font will also change the size of the font in the announcement bar at the top of the page. This can be annoying if you're increasing the font size, especially on mobile devices where it can take up the entire page. The following code takes care of that issue.

    #localNotice p {
       font-size: 11pt !important;
    }

You can add elements like colors and different fonts to your paragraphs. Here's an example of a paragraph with a custom font. Example:

    p {
      font-size: 16pt;
      font-family: Georgia;
    }


Font Style


Changing the font style is an easy way to make things fancy. You can use a few standard fonts and ATF stories has a few in their code you can choose, too. I have included all of them below.

Georgia

This font is Georgia. It's a great standard paragraph font to use because it's very easy to read and it's the paragraph font on this page!

  font-family: georgia;

Arial

This is the most widely used font. You've probably seen it before...

  font-family: arial;

Monospace

Simplicity at it's most boring. Just my thoughts on the matter.

  font-family: monospace;

Garamond

This font is another one that is nice and easy to read. I still like Georgia better.

  font-family: garamond;

Trebuchet MS

This is a pretty nice looking font. I've always liked how this one looks bolded.

  font-family: trebuchet MS;

Times New Roman

This font probably doesn't need an introduction.

  font-family: times new roman;

Brush Script MT

Well, aren't we getting fancy now?

  font-family: brush script mt;

Great Vibes

I personally use this font for my chapter titles. It's another one that looks great bolded!

  font-family:Great Vibes; 

Dawning of a New Day

Sign your name on the dotted line...

  font-family: Dawning of a New Day;


Color


This code can be added to a paragraph tag to change the color of your font. Just use a color picker tool and copy the hex code. This example with make your text dark blue!

  color: #260C83;