|
1 | 1 | body {
|
2 |
| - font-family: Arial, sans-serif; |
3 |
| - display: flex; |
4 |
| - justify-content: center; |
5 |
| - align-items: center; |
6 |
| - height: 100vh; |
7 |
| - margin: 0; |
8 |
| - background-color: #f4f4f4; |
| 2 | + font-family: Arial, sans-serif; |
| 3 | + display: flex; |
| 4 | + justify-content: center; |
| 5 | + align-items: center; |
| 6 | + height: 100vh; |
| 7 | + margin: 0; |
| 8 | + background-color: #f4f4f4; |
9 | 9 | }
|
10 | 10 |
|
11 | 11 | .container {
|
12 |
| - background-color: #fff; |
13 |
| - padding: 20px; |
14 |
| - border-radius: 8px; |
15 |
| - box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); |
16 |
| - |
| 12 | + background-color: #fff; |
| 13 | + padding: 20px; |
| 14 | + border-radius: 8px; |
| 15 | + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); |
17 | 16 | }
|
18 | 17 |
|
19 | 18 | h1 {
|
20 |
| - text-align: center; |
| 19 | + text-align: center; |
21 | 20 | }
|
22 | 21 |
|
23 | 22 | .form-container {
|
24 |
| - margin-bottom: 20px; |
| 23 | + margin-bottom: 20px; |
25 | 24 | }
|
26 | 25 |
|
27 |
| -#task-input, #category-select, button { |
28 |
| - margin: 5px; |
29 |
| - padding: 10px; |
30 |
| - border: 1px solid #ccc; |
31 |
| - border-radius: 4px; |
| 26 | +#task-input, |
| 27 | +#category-select, |
| 28 | +button { |
| 29 | + margin: 5px; |
| 30 | + padding: 10px; |
| 31 | + border: 1px solid #ccc; |
| 32 | + border-radius: 4px; |
32 | 33 | }
|
33 | 34 |
|
34 | 35 | button {
|
35 |
| - background-color: #007bff; |
36 |
| - color: #fff; |
37 |
| - border: none; |
38 |
| - cursor: pointer; |
| 36 | + background-color: #007bff; |
| 37 | + color: #fff; |
| 38 | + border: none; |
| 39 | + cursor: pointer; |
39 | 40 | }
|
40 | 41 |
|
41 | 42 | button:hover {
|
42 |
| - background-color: #0056b3; |
| 43 | + background-color: #0056b3; |
43 | 44 | }
|
44 | 45 |
|
45 | 46 | .filter-container {
|
46 |
| - margin-bottom: 20px; |
47 |
| - display: flex; |
48 |
| - justify-content: space-between; |
49 |
| - align-items: center; |
| 47 | + margin-bottom: 20px; |
| 48 | + display: flex; |
| 49 | + justify-content: space-between; |
| 50 | + align-items: center; |
50 | 51 | }
|
51 | 52 |
|
52 | 53 | ul {
|
53 |
| - list-style-type: none; |
54 |
| - padding: 0; |
| 54 | + list-style-type: none; |
| 55 | + padding: 0; |
55 | 56 | }
|
56 | 57 |
|
57 | 58 | li {
|
58 |
| - background-color: #f9f9f9; |
59 |
| - margin: 5px 0; |
60 |
| - padding: 10px; |
61 |
| - border-radius: 4px; |
62 |
| - display: flex; |
63 |
| - justify-content: space-between; |
64 |
| - align-items: center; |
| 59 | + background-color: #f9f9f9; |
| 60 | + margin: 5px 0; |
| 61 | + padding: 10px; |
| 62 | + border-radius: 4px; |
| 63 | + display: flex; |
| 64 | + justify-content: space-between; |
| 65 | + align-items: center; |
65 | 66 | }
|
66 | 67 |
|
67 | 68 | .task-text {
|
68 |
| - flex: 1; |
| 69 | + flex: 1; |
69 | 70 | }
|
70 | 71 |
|
71 | 72 | .delete-btn {
|
72 |
| - background-color: #dc3545; |
73 |
| - color: #fff; |
74 |
| - border: none; |
75 |
| - padding: 5px 10px; |
76 |
| - border-radius: 4px; |
77 |
| - cursor: pointer; |
| 73 | + background-color: #dc3545; |
| 74 | + color: #fff; |
| 75 | + border: none; |
| 76 | + padding: 5px 10px; |
| 77 | + border-radius: 4px; |
| 78 | + cursor: pointer; |
78 | 79 | }
|
79 | 80 |
|
80 | 81 | .delete-btn:hover {
|
81 |
| - background-color: #c82333; |
| 82 | + background-color: #c82333; |
82 | 83 | }
|
0 commit comments