-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinline_style_10.css
More file actions
77 lines (39 loc) · 1.11 KB
/
inline_style_10.css
File metadata and controls
77 lines (39 loc) · 1.11 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
.holiday-card {
height: 80vh; /* Fixed height for the card */
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.holiday-card-body {
padding: 20px;
overflow-y: auto; /* Enable vertical scrolling */
}
.holiday-table {
width: 100%;
border-collapse: collapse;
background-color: #fff;
}
.holiday-table th, .holiday-table td {
padding: 12px;
text-align: left;
border-bottom: 1px solid #ddd;
}
.holiday-table th {
background-color: #ffc107;
color: white;
}
.holiday-table tr.holiday {
background-color: #f8d7da; /* Light red for holidays */
}
.holiday-table tr.weekoff {
background-color: #d4edda; /* Light green for weekly off */
}
.holiday-table tr:hover {
background-color: #f5f5f5;
}
.blank-card {
height: 80vh; /* Same height as the holiday card */
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
background-color: #fff;
padding: 20px;
}