blob: bd59b2a72e713611b6b707934f4413d3323f4a64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
@import url('blueprint/screen.css');
@import url('awesome/awesome.css');
@import url('uniform/blue.uni-form.css');
/** CSS3 fonts **/
@import url(http://fonts.googleapis.com/css?family=Lobster);
@import url(http://fonts.googleapis.com/css?family=Just+Me+Again+Down+Here);
a {
color: #a45900;
}
#title{
margin-top: 10px;
}
#title h1{
font-family: 'Lobster', arial, serif;
}
#topmenu{
margin-top: 30px;
}
#topmenu ul{
float: right;
}
#topmenu ul li{
float: right;
list-style-type: none;
margin-left: 10px;
}
#leftmenu input{
width: 150px;
}
.members {
list-style-type: none;
margin: 0;
padding: 0;
width: 80%;
}
.members li{
padding: 5px;
}
.members .odd{
background-color: #efefef;
}
.members .remove{
float: right;
}
.members .balance{
margin-right: 10px;
font-weight: bold;
}
.positive{
color: green;
}
.negative{
color: red;
}
|