-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalendar.css
75 lines (63 loc) · 1012 Bytes
/
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
70
71
72
73
74
75
.calendar {
padding: 10px;
}
.calendar .header {
position: relative;
line-height: 30px;
margin-bottom: 7px;
margin-top: 2px;
}
.calendar .header button {
background: none;
border: none;
font-size: 20px;
}
.calendar .header .prev, .calendar .header .next {
position: absolute;
}
.calendar .header .next {
right: 0;
top: 0;
}
.calendar .header .month {
text-align: center;
font-size: 20px;
}
td {
border: 1px solid #ccc;
height: 45px;
width: 14.28571428571429%;
vertical-align: middle;
text-align: center;
background-color: white;
font-weight: bold;
color: #333;
}
td span {
}
td .hasEvent {
height: 0;
font-size: 5px;
line-height: 5px;
padding-left: 2px;
}
td .hasEvent i {
padding-right: 1px;
}
td.cal-day-outmonth {
opacity: 0.3;
}
td.cal-day-weekend {
color: darkred;
}
td.active {
/*//border: black solid 1px;*/
background-color: #eee;
color: #000;
}
td.active span {
}
td.cal-day-today {
font-size: 18px;
background-color: #eef;
}