-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcal.css
88 lines (70 loc) · 1.13 KB
/
cal.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
* {
-webkit-print-color-adjust:exact;
font-family: sans-serif;
}
#calendar {
margin: 0;
padding: 0;
border-top: 1px solid black;
border-right: 1px solid black;
}
.month_name {
border-bottom: 1px solid black;
border-left: 1px solid black;
padding: 0px 2px 0px 2px;
}
.cell {
vertical-align: center;
text-align: center;
border-bottom: 1px solid black;
border-left: 1px solid black;
width: 30px;
padding: 2px 5px 1px 5px;
}
.weekday {
background: #dddddd;
}
.even_week {
background: #bbbbbb;
}
.weekend {
background: orange;
}
.hu_swap_work {
background: #999999;
}
.hu_swap_holi {
background: darkorange;
color: white;
}
.huholiday_cell {
background: red;
color: white;
}
.usholiday_cell {
background: purple;
}
.eeholiday_text {
border-bottom: 1px solid black;
}
.usholiday_text {
color: white;
}
.huholiday_cell.usholiday_cell {
background: lightgreen;
}
.huholiday_text.usholiday_text {
color: black;
}
th, .month_name, .workday_count {
background: lightblue;
}
.option_friday {
border-right: 1px solid black;
}
.dst_change_hu {
padding: 2px 0px 2px 2px;
}
.dst_change_us {
padding: 2px 2px 2px 0px;
}