Added first support for CSS files.
[rodin/chimara.git] / tests / style.css
1 /* Possible selectors:
2  * normal
3  * emphasized
4  * preformatted
5  * header
6  * subheader
7  * alert
8  * note
9  * block-quote
10  * input
11  * user1
12  * user2
13  *
14  * Possible style hints:
15  * font-family (string)
16  * font-size (float)
17  * font-weight (normal/bold)
18  * font-style (normal/italic)
19  * color (#hex-value)
20  * background-color (#hex-value)
21  * text-align (left/right/center)
22  */
23
24
25 normal {
26         font-family: 'times';
27         font-size: 12;
28 }
29
30 header {
31         font-size: 18;
32         font-weight: bold;
33         text-align: center;
34 }
35
36 subheader {
37         font-size: 14;
38         font-weight: bold;
39 }
40
41 alert {
42         color: #aa0000;
43         font-weight: bold;
44 }
45
46 note {
47         color: #aaaa00;
48         font-weight: bold;
49 }
50
51 block-quote {
52         text-align: center;
53         font-style: italic;
54 }
55
56 input {
57 }
58
59 user1 {
60 }
61
62 user2 {
63 }