-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
114 lines (108 loc) · 2.15 KB
/
Copy pathstyle.css
File metadata and controls
114 lines (108 loc) · 2.15 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
103
104
105
106
107
108
109
110
111
112
113
114
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
font-weight: 600;
}
body{
background-color: rgb(196, 246, 246);
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.title{
font-size: 3rem;
text-align: center;
line-height: 1.5;
margin-bottom: 1rem;
}
.taskInput{
display: flex;
align-items: center;
gap: 15px;
}
.taskInput #inputTask{
width: 350px;
padding: 10px;
border-radius: 5px;
border: none;
font-size: 1.2rem;
}
.taskInput #addTaskBtn{
padding: 12px 20px;
border: none;
border-radius: 50px;
font-size: 1.2rem;
background-color: rgb(0, 0, 0);
color: rgb(255, 255, 255);
cursor: pointer;
transition: all 0.3s ease;
}
.taskInput #addTaskBtn:hover{
background-color: rgb(63, 59, 59);
transform: scale(0.95);
}
.tasks{
margin-top: 2rem;
}
.tasks ul{
list-style: none;
display: flex;
flex-direction: column;
gap: 10px;
}
.tasks ul li{
padding: 10px;
border-radius: 5px;
background-color: rgb(20, 29, 52);
color: rgb(255, 255, 255);
font-size: 1.2rem;
display: flex;
align-items: center;
justify-content: space-between;
}
.tasks ul li > div{
display: flex;
align-items: center;
gap: 10px;
}
.tasks ul li > div i{
cursor: pointer;
}
.tasks ul li > div i:hover{
color: rgb(255, 136, 0);
}
.tasks ul li > div span{
color: rgb(255, 136, 0);
}
.tasks ul li > div span:hover{
color: rgb(255, 255, 255);
}
#taskCheckbox{
margin: 0 4px;
cursor: pointer;
transform: scale(1.5);
}
.editInput{
padding: 5px 10px;
border: none;
outline: none;
background-color: transparent;
color: white;
font-size: 1.2rem;
}
.completed{
text-decoration: line-through;
opacity: 0.5;
}
.status-none{
display: none;
}
.completed-status{
margin-left: 10px;
font-size: 1rem;
color: green !important;
}