-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (82 loc) · 1.42 KB
/
Copy pathstyle.css
File metadata and controls
82 lines (82 loc) · 1.42 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
body {
background: linear-gradient(135deg, #6f7a76,#fcb63f);
font-family: sans-serif;
margin: 0;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
h1 {
color: #cc7722;
margin-bottom: 20px;
}
.input-container {
margin-bottom: 20px;
}
#taskInput {
padding: 10px;
border-radius: 15px;
border: 2px solid black;
width: 200px;
}
.todo-container {
background: white;
padding: 20px;
border-radius: 15px;
width: 350px;
margin: auto;
box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}
#addBtn {
padding: 10px 15px;
margin-left: 10px;
border-radius: 20px;
border: 2px solid black;
cursor: pointer;
background-color: green;
color: white;
transition: 0.2s;
}
#addBtn:hover {
background-color: darkgreen;
color: white;
}
ul {
list-style-type: none;
padding: 0;
}
li {
margin: 10px auto;
padding: 10px;
width: 250px;
background: white;
border-radius: 10px;
border: 1px solid #ddd;
display: flex;
justify-content: space-between;
align-items: center;
transition: 0.2s;
}
li:hover {
background: #fff4e6;
}
button.delete-btn {
padding: 2px 8px;
border-radius: 5px;
border: none;
cursor: pointer;
background: #ff6b6b;
color: white;
transition: 0.2s;
}
button.delete-btn:hover {
background: #e63946;
}
#motivation {
margin-top: 10px;
font-style: italic;
font-size: 18px;
color: #333;
}