responsive-calendar.css
1.14 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
.responsive-calendar .controls {
text-align: center;
}
.responsive-calendar .controls a {
cursor: pointer;
}
.responsive-calendar .controls h4 {
display: inline;
}
.responsive-calendar .day-headers,
.responsive-calendar .days {
font-size: 0;
}
.responsive-calendar .day {
display: inline-block;
position: relative;
font-size: 14px;
width: 14.285714285714286%;
text-align: center;
}
.responsive-calendar .day a {
color: #000000;
display: block;
cursor: pointer;
padding: 20% 0 20% 0;
}
.responsive-calendar .day a:hover {
background-color: #eee;
text-decoration: none;
}
.responsive-calendar .day.header {
border-bottom: 1px gray solid;
}
.responsive-calendar .day.active a {
background-color: #1d86c8;
color: #ffffff;
}
.responsive-calendar .day.active a:hover {
background-color: #36a0e2;
}
.responsive-calendar .day.active .not-current {
background-color: #8fcaef;
color: #ffffff;
}
.responsive-calendar .day.active .not-current:hover {
background-color: #bcdff5;
}
.responsive-calendar .day.not-current a {
color: #ddd;
}
.responsive-calendar .day .badge {
position: absolute;
top: 2px;
right: 2px;
z-index: 1;
}