-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
31 lines (26 loc) · 697 Bytes
/
styles.css
File metadata and controls
31 lines (26 loc) · 697 Bytes
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
/* Custom font for the heading */
.font-lobster {
font-family: 'Lobster', cursive;
}
/* Custom styles for list items */
.bucket-item {
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.bucket-item:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
/* Style for completed items */
.completed {
background-color: #d1fae5; /* A light green */
text-decoration: line-through;
color: #6b7280; /* A muted gray */
}
.completed .emoji {
filter: grayscale(80%);
}
/* Style for pending items */
.pending {
background-color: #fef3c7; /* A light yellow */
}