File tree 3 files changed +60
-7
lines changed
3 files changed +60
-7
lines changed Original file line number Diff line number Diff line change @@ -72,5 +72,8 @@ <h1 class="todoapp__title">Quick<strong>Task</strong></h1>
72
72
</ button >
73
73
</ form >
74
74
</ main >
75
+ < footer class ="footer ">
76
+ < p > © 2024 QuickTask. Todos os direitos reservados - João Victor Carvalho de Souza</ p >
77
+ </ footer >
75
78
</ body >
76
79
</ html >
Original file line number Diff line number Diff line change @@ -56,9 +56,10 @@ document.addEventListener("click", (e) => {
56
56
}
57
57
58
58
if ( targetEl . classList . contains ( "todoapp__button--editTask" ) ) {
59
- oldInputValue = taskTitle ; // Definindo o valor aqui
59
+ oldInputValue = taskTitle ;
60
60
toggleForms ( ) ;
61
61
textBoxEdit . value = taskTitle ;
62
+ textBoxEdit . focus ( ) ;
62
63
}
63
64
} ) ;
64
65
Original file line number Diff line number Diff line change 25
25
}
26
26
27
27
.todoapp {
28
- max-height : 90vh ;
28
+ max-height : 80vh ;
29
+ width : 90vw ;
30
+ max-width : 600px ;
29
31
overflow : hidden;
30
32
31
33
padding : 2rem ;
@@ -47,19 +49,24 @@ body {
47
49
}
48
50
49
51
.todoapp__input-container {
52
+ display : flex;
53
+
50
54
margin-bottom : 1rem ;
51
55
}
52
56
53
57
# todoapp-addTask ,
54
58
# todoapp-editTask {
59
+ width : 100% ;
60
+
55
61
padding : 8px ;
62
+ margin-right : 1rem ;
56
63
57
- border-bottom : 2 px solid var (--color01 );
64
+ border-bottom : 3 px solid var (--color01 );
58
65
}
59
66
60
67
# button-Add ,
61
68
# button-Edit {
62
- padding : 8 px ;
69
+ padding : 12 px ;
63
70
64
71
border-radius : 30% 70% 63% 37% / 27% 32% 68% 73% ;
65
72
68
75
}
69
76
70
77
.todoapp__tasks-list {
71
- max-height : calc (90 vh - 50 px );
78
+ max-height : calc (80 vh - 200 px );
72
79
overflow-y : auto;
73
80
74
81
display : flex;
@@ -85,15 +92,35 @@ body {
85
92
align-items : center;
86
93
87
94
padding : 8px ;
88
- border : 2px solid var (--color01 );
95
+ border : 3px solid var (--color01 );
96
+ border-radius : 8px ;
89
97
}
90
98
91
99
.task-LeftSide {
92
100
display : flex;
93
101
align-items : center;
102
+
103
+ gap : 8px ;
104
+ }
105
+
106
+ .todoapp__task-check {
107
+ width : 24px ;
108
+ height : 24px ;
109
+
110
+ display : grid;
111
+ place-items : center;
112
+
113
+ border-radius : 50% ;
114
+ border : 3px solid var (--color01 );
115
+
116
+ font-size : 1.2rem ;
117
+ }
118
+
119
+ .todoapp__task-check i {
120
+ pointer-events : none;
94
121
}
95
122
96
- .todoapp__task-- done {
123
+ .done {
97
124
color : # 9b9b98 ;
98
125
text-decoration : line-through;
99
126
}
@@ -112,3 +139,25 @@ body {
112
139
.hide {
113
140
display : none !important ;
114
141
}
142
+
143
+ .footer {
144
+ width : 100% ;
145
+ padding : 1rem ;
146
+ background-color : var (--color01 );
147
+ color : var (--colorwhite );
148
+ text-align : center;
149
+ position : absolute;
150
+ bottom : 0 ;
151
+ left : 0 ;
152
+ font-size : 0.875rem ;
153
+ }
154
+
155
+ .footer p {
156
+ margin : 0 ;
157
+ }
158
+
159
+ @media screen and (min-width : 700px ) {
160
+ * {
161
+ font-size : 1.3rem ;
162
+ }
163
+ }
You can’t perform that action at this time.
0 commit comments