-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (52 loc) · 835 Bytes
/
style.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
* {
padding: 0px;
margin: 0px;
box-sizing: border-box;
}
.heading {
display: flex;
flex-direction: column;
background: cadetblue;
padding: 10px;
}
.heading h1, .heading h3 {
background: cadetblue;
color: cyan;
margin: 10px auto;
}
form {
display: flex;
}
form input[type="text"] {
height: 40px;
width: 250px;
border-radius: 9999px;
border: 1px solid #707070;
outline: none;
padding: 15px;
font-size: 16px;
margin: 10px auto;
}
.todos {
display: flex;
flex-direction: column;
}
.todos li {
padding: 5px;
list-style: none;
margin: 0 auto;
max-width: 500px;
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.todos li span {
padding: 0 50px;
}
.todos li i {
padding: 10px;
}
.notfound {
display: none !important;
}
/*# sourceMappingURL=style.css.map */