generated from dr-btd-student/p3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatepicker.css
More file actions
74 lines (63 loc) · 1.14 KB
/
datepicker.css
File metadata and controls
74 lines (63 loc) · 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
.header {
width: 50%;
text-align: center;
padding: 10px 0;
background-color: #2196F3;
color: #fff;
font-weight: bold;
font-size: 22px;
border-bottom: 2px solid #1565C0;
box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
}
.nav-button {
background-color: #3f51b5;
color: #fff;
font-size: 16px;
width: 25px;
height: 25px;
border: none;
border-radius: 100%;
cursor: pointer;
margin: 0 3px;
transition: background-color 0.2s, color 0.2s;
}
.current-month {
font-size: 18px;
}
.table {
width: 50%;
border-collapse: collapse;
}
.table th,
.table td {
padding: 8px;
text-align: center;
border: 1px solid #ccc;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease;
}
.table th {
font-weight: bold;
color: #fff;
background-color: #3f51b5;
}
.table td {
background-color: #fff;
}
.table td.dimmed {
color: #ccc;
}
.table td.clickable:hover {
background-color: #19e3be;
}
.nav-button:hover {
background-color: #2c387e;
}
.table td:hover {
background-color: #f5f5f5;
color: #444;
}
.table td:hover {
transition: background-color 0.3s ease, color 0.3s ease;
}