-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcalendar.css
More file actions
72 lines (58 loc) · 1.12 KB
/
calendar.css
File metadata and controls
72 lines (58 loc) · 1.12 KB
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
/** CALENDAR STARTS HERE **/
#calendar {
color: #FFFFFF;
font: 14px sans-serif;
background-color: #6A0C0B;
border: 1px solid #6A0C0B;
border-collapse: separate;
border-spacing: 5px;
border-radius: 5px;
min-width: 50px;
}
#monthrow th {
color: #FBCA03 !important;
background-color: #AA0505 !important;
font: 30px sans-serif !important;
border-radius: 5px;
text-align: center;
padding: 14px 20px 14px;
font-size: 16px;
font-weight: normal;
width:300px;
}
#prev, #next {
color: #FBCA03;
font-size: 16px;
padding: 10px 10px;
background: none;
font-weight: bold;
border: none;
}
#prev {
float: left;
}
#next {
float: right;
}
#next:disabled,
#prev:disabled {
color: #AA0505 !important;
}
#next:hover:enabled,
#prev:hover:enabled {
color: #FBCA03 !important;
}
#calendar td {
text-align: center;
padding: 6px 5px;
}
.daysoftheweek th {
text-align: center;
padding-top: 6px 15px;
}
.current-date {
border-radius: 5%;
color: #F9F9F9 !important;
background-color: #F9BA32;
}
/** CALENDAR ENDS HERE **/