projects
/
rodin
/
chimara.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Added correct resize handling
[rodin/chimara.git]
/
tests
/
style.css
1
/* Possible windows:
2
* grid
3
* buffer
4
*
5
* Possible selectors:
6
* normal
7
* emphasized
8
* preformatted
9
* header
10
* subheader
11
* alert
12
* note
13
* block-quote
14
* input
15
* user1
16
* user2
17
*
18
* Possible style hints:
19
* font-family (string)
20
* font-size (float)
21
* font-weight (normal/bold)
22
* font-style (normal/italic)
23
* color (#hex-value)
24
* background-color (#hex-value)
25
* text-align (left/right/center)
26
*/
27
grid.normal {
28
font-size: 10;
29
}
30
31
grid.user1 {
32
color: #303030;
33
background-color: #ffffff;
34
}
35
36
buffer.normal {
37
font-size: 10;
38
}
39
40
buffer.header {
41
font-size: 14;
42
font-weight: bold;
43
text-align: center;
44
}
45
46
buffer.subheader {
47
font-size: 12;
48
font-weight: bold;
49
}
50
51
buffer.alert {
52
color: #aa0000;
53
font-weight: bold;
54
}
55
56
buffer.note {
57
color: #aaaa00;
58
font-weight: bold;
59
}
60
61
buffer.block-quote {
62
text-align: center;
63
font-style: italic;
64
}
65
66
buffer.input {
67
color: #0000aa;
68
font-style: italic;
69
}
70
71
buffer.user1 {
72
}
73
74
buffer.user2 {
75
}