* Changing styles no longer affects existing windows
[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 buffer.normal {
24         font-size: 12;
25 }
26
27 buffer.header {
28         font-size: 18;
29         font-weight: bold;
30         text-align: center;
31 }
32
33 buffer.subheader {
34         font-size: 14;
35         font-weight: bold;
36 }
37
38 buffer.alert {
39         color: #aa0000;
40         font-weight: bold;
41 }
42
43 buffer.note {
44         color: #aaaa00;
45         font-weight: bold;
46 }
47
48 buffer.block-quote {
49         text-align: center;
50         font-style: italic;
51 }
52
53 buffer.input {
54 }
55
56 buffer.user1 {
57 }
58
59 buffer.user2 {
60 }