-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (71 loc) · 1.55 KB
/
style.css
File metadata and controls
79 lines (71 loc) · 1.55 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
body {
margin: 0;
padding: 0;
font-family: "Poppins", sans-serif;
background-color: #f5f5f5;
color: #333;
}
header .head {
color: #fff;
background-color: #8e44ad;
font-weight: 600;
text-align: center;
padding: 1rem 0;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.main {
margin: 3rem auto 1rem auto;
width: 80%;
max-width: 600px;
border: 2px solid #ccc;
border-radius: 16px;
padding: 1rem;
background: #fff;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.main form input.task-input {
width: 90%;
padding: 0.8rem;
border: 1px solid #ccc;
border-radius: 11px;
font-size: 1rem;
outline: none;
transition: border-color 0.3s;
}
.main form input.task-input:focus {
border-color: #8e44ad;
}
/* Add Task Button */
.task .add-task-btn {
display: block;
margin: 1rem auto 0 auto;
padding: 0.8rem 2rem;
color: #fff;
background-color: #8e44ad;
border: none;
border-radius: 50px;
font-weight: 600;
cursor: pointer;
transition: background-color 0.3s;
}
.task .add-task-btn:hover {
background-color: #722ea6;
}
/* Footer Styling */
footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #8e44ad;
color: #fff;
text-align: center;
padding: 1rem 0;
font-family: "Poppins", sans-serif;
font-weight: 600;
box-shadow: 0 -4px 6px rgba(0, 0, 0, 0.1);
}
footer .footer p {
margin: 0;
font-size: 0.9rem;
}