1/* General Styles
2   Author: Florian Purchess
3   ----------------------------------------------------*/
4
5
6/* =GENERAL CLASSES
7   ----------------------------------------------------*/
8
9/* floating and position */
10.left {float: left;}
11.right {float: right;}
12.center {margin: 0 auto;}
13
14/* clearing */
15.clear,
16.clear-both {clear: both;}
17.clear-left {clear: left;}
18.clear-right {clear: right;}
19
20/* text-align */
21.text-left {text-align: left;}
22.text-center {text-align: center;}
23.text-right {text-align: right;}
24
25/* display */
26.show {display: block;}
27.hide {display: none;}
28
29/* sizing */
30.mute {font-size: small;}
31.loud {font-size: large;}
32