-
Notifications
You must be signed in to change notification settings - Fork 1
/
DatePicker.css
74 lines (61 loc) · 1.63 KB
/
DatePicker.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
@import 'react-calendar/dist/Calendar.css';
div.react-calendar {
margin-top: 3em;
background: #fff;
color: rgba(0,0,0,.6)!important;
border: none;
border-radius: .28571429rem;
text-transform: none;
text-shadow: none;
box-shadow: 0 0 0 1px rgba(34,36,38,.15) inset;
padding: .58928571em .58928571em .58928571em;
}
.react-calendar,
.react-calendar button {
font-family: Lato, 'Helvetica Neue', Arial, Helvetica, sans-serif;
}
.react-calendar button {
background: transparent none;
color: rgba(0,0,0,.87);
font-weight: 400;
border-radius: .28571429rem;
text-transform: none;
text-shadow: none;
}
.react-calendar button:focus,
.react-calendar .react-calendar__navigation button:enabled:focus {
background: transparent none;
}
.react-calendar button:enabled:hover,
.react-calendar .react-calendar__navigation button:enabled:hover {
background: #fff;
color: rgba(0,0,0,.6);
}
.react-calendar .react-calendar__month-view__days__day--neighboringMonth {
color: rgba(0,0,0,.54);
}
.react-calendar abbr[title] {
text-decoration: none;
}
.react-calendar .react-calendar__tile--now {
background-color: #fbbd08;
color: #000000;
}
.react-calendar .react-calendar__tile--now:enabled:hover {
background-color: #eaae00;
color: #fff;
}
.react-calendar .react-calendar__month-view__days__day--weekend {
color: #db2828;
}
.react-calendar .react-calendar__month-view__days__day--weekend:enabled:hover {
color: #d01919;
}
.react-calendar .react-calendar__tile--active {
background-color: #1d77bb;
color: #fff;
}
.react-calendar .react-calendar__tile--active:enabled:hover {
background-color: #1678c2;
color: #fff;
}