Subversion Repositories Applications.bazar

Rev

Rev 17 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
17 ddelon 1
.nav {
2
	text-align: center;
3
}
4
 
5
table.calendar {
6
	width: 90%;
7
	margin: 0 auto;
8
}
9
 
10
table.calendar td {
11
	height: 6em;
12
	vertical-align: top;
13
	width: 14%;
14
	font-size: 12px;
15
	text-align: left;
16
	color: #444444;
17
}
18
 
19
table.calendar td h1 {
20
	text-align: left;
21
	font-size: 10px;
22
	margin: 1px 1px 1px 1px;
23
}
24
 
25
table.calendar td ul {
26
	padding-left: 15px;
27
	margin: 0;
28
	list-style-type: circle;
29
}
30
 
31
table.calendar td ul li {
32
	margin: 0px 0px 0px 0px;
33
	padding: 0px 0px 0px 0px;
34
	line-height: 1.2em;
35
}
36
 
37
td.previous_month {
38
	background: #B1BB7E;
39
}
40
 
41
td.previous_month a:hover, td.previous_month a:active {
42
        color: #000000;
43
}
44
 
45
td.current_month {
46
	background: #BFB07E;
47
}
48
 
19 ddelon 49
td.current_day {
50
	background: #BFBFBF;
51
}
52
 
53
 
17 ddelon 54
td.other_month {
55
	background: #eeeeee;
56
}
57
 
58
td.other_month a:link,  td.other_month a:visited {
59
      color: #777777;
60
}
61
 
62
td.other_month a:hover, td.other_month a:active {
63
	color: #aaaaaa;
64
}
65