-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
102 lines (101 loc) · 2.26 KB
/
Copy pathstyles.css
File metadata and controls
102 lines (101 loc) · 2.26 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(to right, #cb7a11, #4525fc);
color: white;
text-align: center;
transition: background 0.3s, color 0.3s;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container {
max-width: 500px;
margin: 20px auto;
background: rgba(255, 255, 255, 0.1);
padding: 20px;
box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
border-radius: 12px;
backdrop-filter: blur(10px);
transition: background 0.3s, color 0.3s;
}
.task-input {
display: flex;
flex-direction: column;
gap: 10px;
}
.task-input input, select, button {
padding: 12px;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 8px;
font-size: 16px;
outline: none;
background: rgba(255, 255, 255, 0.2);
color: white;
}
button {
background: #12d9f3;
color: white;
cursor: pointer;
border: none;
transition: background 0.3s;
font-weight: bold;
}
button:hover {
background: #0044ff;
}
.task-filters button {
background: #00c853;
padding: 10px 18px;
border-radius: 8px;
font-size: 14px;
}
.task-filters button:hover {
background: #009624;
}
ul {
list-style: none;
padding: 0;
}
li {
display: flex;
justify-content: space-between;
align-items: center;
padding: 15px;
background: rgba(255, 255, 255, 0.2);
border-left: 5px solid #15ff00;
margin: 6px 0;
border-radius: 8px;
transition: 0.3s;
box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}
li:hover {
background: rgba(255, 255, 255, 0.3);
}
.completed {
text-decoration: line-through;
color: lightgray;
}
/* Dark Mode Styles */
.dark-mode {
background: linear-gradient(to right, #232526, #414345);
color: white;
}
.dark-mode .container {
background: rgba(0, 0, 0, 0.4);
color: white;
box-shadow: 0 6px 12px rgba(255, 255, 255, 0.1);
}
.dark-mode button {
background-color: #1e88e5;
color: white;
}
.dark-mode button:hover {
background-color: #1565c0;
}
.dark-mode .task-filters button {
background: #12d9f3;
}
.dark-mode .task-filters button:hover {
background: #12d9f3;
}