Subversion Repositories Applications.bazar

Rev

Go to most recent revision | Details | 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
/*
38
 * These attributes apply to the cells that correspond to the days
39
 * already past in the current month.
40
 */
41
td.previous_month {
42
	background: #B1BB7E;
43
}
44
 
45
td.previous_month a:hover, td.previous_month a:active {
46
        color: #000000;
47
}
48
 
49
/*
50
 * These attributes apply to the cells that correspond to the future
51
 * days in the current month.
52
 */
53
td.current_month {
54
	background: #BFB07E;
55
}
56
 
57
/*
58
 * These attributes apply to the cells that correspond to days in the
59
 * previous or next month of the current month
60
 */
61
td.other_month {
62
	background: #eeeeee;
63
}
64
 
65
td.other_month a:link,  td.other_month a:visited {
66
      color: #777777;
67
}
68
 
69
td.other_month a:hover, td.other_month a:active {
70
	color: #aaaaaa;
71
}
72