-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle_calendar.css
70 lines (55 loc) · 1008 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
63
64
65
66
67
68
69
html{
color: white;
background-color: black;
}
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 td #today {
background-color: lightskyblue;
}
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;
border: 1 px solid green;
}
table.month .alldayseparator {
display: block;
height: 0.5ex;
background-color: tomato;
}
table.month .calsrcqmul {
background-color: rgb(235,235,255);
}
table.month .calsrchome {
background-color: rgb(255,235,165);
}
a{
text-decoration: none;
color: white;
}