-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtodolist.css
More file actions
98 lines (83 loc) · 1.39 KB
/
todolist.css
File metadata and controls
98 lines (83 loc) · 1.39 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
* {
font-family: Arial, Helvetica, sans-serif;
}
.js-todo,
.todo-head {
display: grid;
grid-template-columns: 200px 150px 100px;
row-gap: 20px;
align-items: center;
column-gap: 20px;
justify-content: center;
}
.heading {
display: grid;
justify-content: center;
}
.todo-head {
margin-bottom: 20px;
}
.js-delBtn {
background-color: rgb(192, 4, 4);
color: white;
cursor: pointer;
padding: 10px;
border: none;
}
.js-addBtn {
background-color: green;
color: white;
padding: 10px;
cursor: pointer;
border: none;
}
.js-addBtn:hover {
box-shadow: 2px 2px 10px lightgreen;
}
.js-delBtn:hover {
box-shadow: 2px 2px 10px rgb(245, 23, 23);
}
.js-todo-input:focus {
outline: none;
box-shadow: 1px 1px 5px #1e06f4;
}
.js-todo-input {
padding: 10px;
}
.js-dueDate {
padding: 10px;
}
@media (max-width: 505px) {
h1 {
font-size: 1.5rem;
}
.js-todo,
.todo-head {
display: grid;
grid-template-columns: 150px 100px 70px;
row-gap: 20px;
align-items: center;
column-gap: 20px;
justify-content: center;
}
.js-dueDate {
font-size: 10px;
}
}
@media (max-width: 370px) {
h1 {
font-size: 1.2rem;
}
.js-todo,
.todo-head {
display: grid;
grid-template-columns: 80px 100px 70px;
row-gap: 20px;
align-items: center;
column-gap: 20px;
justify-content: center;
}
.js-dueDate {
font-size: 8px;
}
}