CSS Variables

This page is basically just a list of CSS variables, the values you can use for them, and a description of what each does.

background-attachment: Changes whether the background moves when you scroll on the page or not. You can use fixed or non-fixed for this.
background-color: Changes the background colour of your page. You can use basic colour names, any hex colour value, or any RGB values for the colour of your choice.
background-image: Changes the background image of your page. You can use any image URL with this in the form of url(URLGOESHERE);.
background-repeat: Changes how the background repeats. You can use 'repeat' to tile the background, 'no-repeat' to only show the background image once, 'repeat-y' to repeat the background up and down, and 'repeat-y' to repeat the background left to right.
border: Used to change all border features on basically anything. You can use three values separate values with this: pixel width, line type, and colour. The different line types are: solid, dotted, dashed.
border-bottom: Used to change just the bottom border features.
border-left: Used to change just the left border features.
border-right: Used to change just the right border features.
border-top: Used to change just the top border features.
color: Changes the font colour. You can use basic colour names, any hex colour value, or any RGB values for the colour of your choice.
font-family: Changes the font of your text. You can use any font name, although the font will not work unless the person viewing the file has the font on their computer.
font-size: Changes the font size of your text. You can use any point size with this.
height: Changes the height of something. You can use a pixel width or a percentage for this.
letter-spacing: Changes the letter spacing. You can use any pixel value with this.
padding: Changes the distance from the edge content can come close to of something like a table, div or page. You can use a pixel width or percentage for this.
padding-bottom: Changes the padding for just the bottom side.
padding-left: Changes the padding for just the left side.
padding-right: Changes the padding for just the right side.
padding-top: Changes the padding for just the top side.
text-align: Changes where text is aligned in something. You can use left, center, or right for this.
text-decoration: Changes how the text is show. You can use bold, underline, italics, or none for this.
vertical-align: Changes where content is aligned. You can use top, center, or bottom for this.
width: Changes the width of something. You can use a pixel width or a percentage for this.

This is by no means a complete list. If you need to know something and it's not here, then feel free to check out alksdjuie!, or if you know of something that should be here but isn't, email it to me at mahala[at]pixelatedstars[dot]net.