blob: 82dfaa9fdad48587fcf20eb28773aef160269b50 (
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
|
/* Grid view ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#g-calendar-grid {
position: relative;
align: center;
float: left;
width: 200px;
height: 220px;
margin: 10px 10px 10px 10px;
}
#g-calendar-profile-grid {
position: relative;
align: center;
float: left;
width: 200px;
height: 145px;
margin: 10px 10px 10px 10px;
}
/* Search form ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
#cal_user {
top: 0px;
left: 60px;
display: inline;
}
#cal_year {
top: 0px;
left: 240px;
display: inline;
}
#cal_go {
top: 0px;
left: 328px;
display: inline;
}
/* Content ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
table.calendar {
text-align: center;
}
table.calendar caption {
font-size: 1.5em;
padding: 0.2em;
}
table.calendar th, table.calendar td {
padding: 0.2em;
border: 0px;
}
table.calendar td:hover {
background: #ddf;
}
/* For RTL Languages ~~~~~~~~~~~~~~~~~~~~~~~ */
.rtl #g-calendar-grid {
float: right;
}
|