-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
52 lines (45 loc) · 809 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
body {
font-family: "Gill Sans", sans-serif;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
align-items: flex-start;
height: 100vh;
}
.container {
display: grid;
}
.input-box {
background: #e8e4e4;
width: 300px;
height: 30px;
border-radius: 5px;
box-shadow: 0 4px 6px rgba(238, 236, 236, 0.1);
padding: 4px;
padding-left: 10px;
}
.btn {
margin-top: 15px;
width: 88px;
padding: 3px;
border-radius: 4px;
}
.btn:hover {
background: #958d8d;
}
.todo-list {
list-style: none;
padding: 0;
margin: 0;
}
.todo-item {
display: flex;
align-items: center;
justify-content: space-between;
margin: 20px;
margin-left: 0;
padding: 10px;
border-radius: 5px;
background: #958585;
}