-
Notifications
You must be signed in to change notification settings - Fork 0
/
todoList.css
104 lines (89 loc) · 1.39 KB
/
todoList.css
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
103
104
body {
height: 100dvh;
text-align: center;
margin-top: 15%;
font-family: sans-serif;
}
main {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}
.add-to-do-button {
cursor: pointer;
}
.todo-container {
display: grid;
grid-template-columns: 200px 200px 30px;
align-items: center;
gap: 20px;
}
.todo-name {
display: flex;
align-items: center;
}
input {
width: 200px;
}
.checkbox {
width: 20px;
height: 20px;
margin-right: 8px;
cursor: pointer;
}
.dot {
width: 5px;
height: 5px;
border-radius: 50%;
background-color: black;
position: relative;
cursor: pointer;
}
.dot::before {
content: "";
display: block;
width: 5px;
height: 5px;
border-radius: 50%;
background-color: black;
transform: translateY(-6px);
}
.dot::after {
content: "";
display: block;
width: 5px;
height: 5px;
border-radius: 50%;
background-color: black;
margin-top: 1px;
}
h4 {
margin-top: 10px;
margin-bottom: 20px;
}
.update {
width: 150px;
height: 80px;
background-color: #333;
color: papayawhip;
position: absolute;
top: -40px;
right: 10px;
bottom: -10px;
display: none;
}
.dot-is-active .update {
display: block;
}
@media screen and (max-width: 480px) {
input[type="date"] {
display: none;
}
.due-date-container {
display: none;
}
.todo-container {
grid-template-columns: 200px 30px;
}
}