-
Notifications
You must be signed in to change notification settings - Fork 8
/
style_calendar.css
64 lines (47 loc) · 897 Bytes
/
style_calendar.css
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
table.month {
border: 1px solid black;
border-collapse: collapse;
}
table.month td, table.month th {
width: 14%;
vertical-align: top;
}
table.month td {
border-width: 5px 1px 5px 1px;
}
table.month td.sat, table.month td.sun {
background-color: rgb(245, 245, 185);
}
table.month td a#today {
display: inline-block;
width: 80%;
height: 2ex;
background-color: rgb(245, 245, 85);
}
table.month .calitem {
display: block;
border: 1px solid black;
margin: 2px;
background-color: rgb(235,235,255);
}
table.month .allday {
border: none;
}
table.month .caltime {
font-size: smaller;
}
table.month .alldayseparator {
display: block;
height: 0.5ex;
}
table.month .calsrcqmul {
background-color: rgb(235,235,255);
}
table.month .calsrchome {
background-color: rgb(255,235,165);
}
table.month .calsrcnl,
table.month .calsrcnlg,
table.month .calsrcnatg {
background-color: rgb(165,225,165);
}