forked from BreakTos/To-do-List
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
128 lines (110 loc) · 1.75 KB
/
styles.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
/* Styles for body element */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #d1e4f4;
}
.Task {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 50px;
}
.Task h2 {
text-align: center;
margin-bottom: 20px;
color: #7b68ee;
}
.form {
display: flex;
margin-top: 20px;
width: 100%;
justify-content: center;
}
.form input {
margin: 0 1rem;
}
.small {
height: 40px;
font-size: 16px;
padding-left: 10px;
margin-right: 5px;
width: 60%;
border: none;
border-radius: 5px;
}
.smaller {
height: 40px;
font-size: 16px;
color: white;
background-color: #7b68ee;
border: none;
border-radius: 5px;
}
.smaller:hover {
background-color: #6a5acd;
}
/* Styles for list */
.Mid {
display: flex;
justify-content: center;
margin-top: 50px;
}
h1 {
text-align: center;
margin-top: 50px;
color: #7b68ee;
}
.list-is {
color: purple;
}
ul {
list-style: none;
padding: 0;
margin: 0;
width: 80%;
background-color: white;
border-radius: 5px;
box-shadow: 0px 0px 5px 0px rgba(0,0,0,0.2);
}
li {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px;
font-size: 16px;
border-bottom: 1px solid #ccc;
}
li:last-child {
border-bottom: none;
}
li .delete {
cursor: pointer;
color: red;
font-weight: bold;
}
/* Styles for footer element */
/* Styles for footer element */
footer {
background-color: #7b68ee;
color: white;
height: 60px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
footer a {
margin-left: 10px;
margin-right: 10px;
text-decoration: none;
}
.space {
display: flex;
align-items: center;
}