-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCalendarStyled.css
More file actions
82 lines (69 loc) · 1.37 KB
/
CalendarStyled.css
File metadata and controls
82 lines (69 loc) · 1.37 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
73
74
75
76
77
78
79
80
81
82
.calendar {
padding: 1rem;
background-color: #ffffff;
width: max-content;
border-radius: 0.375rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.calendar--wrapper {
display: flex;
justify-content: space-between;
}
.calendar__button {
padding-top: 0.25rem;
padding-bottom: 0.25rem;
padding-left: 0.5rem;
padding-right: 0.5rem;
color: #374151;
background-color: #ffffff !important;
border-radius: 0.375rem;
border: none !important;
}
.calendar__button:focus {
cursor: pointer;
outline: none;
}
.calendar__button_chevron {
flex-shrink: 0;
width: 1rem;
cursor: pointer;
}
.calendar__title {
padding-top: 0.25rem;
padding-bottom: 0.25rem;
padding-left: 0.5rem;
padding-right: 0.5rem;
color: #374151;
font-size: 0.875rem;
line-height: 1.25rem;
font-weight: 700;
}
.dates {
padding: 0.75rem;
}
.calendar [data-weekend] {
color: #dc2626;
}
.calendar [aria-selected="true"] {
color: #ffffff;
background-color: #3b82f6;
}
.calendar [aria-selected="true"] {
color: #ffffff;
background-color: #3b82f6;
}
.calendar [aria-selected]:focus-within {
background-color: #f3f4f6;
}
.calendar [aria-selected="true"]:focus-within {
color: #ffffff;
background-color: #3b82f6;
}
.calendar [aria-disabled="true"] {
color: #6b7280;
}
.calendar span {
outline: none;
cursor: pointer;
}