-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathstyles.css
More file actions
79 lines (79 loc) · 1.28 KB
/
styles.css
File metadata and controls
79 lines (79 loc) · 1.28 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 {
background-color: #000;
}
#main {
width: 700px;
background-color: #fff;
display: flex;
justify-content: center;
}
.main-content {
height: 90vh;
display: flex;
align-items: center;
justify-content: center;
}
.todos-section {
background-color: #f5f5f5;
width: 500px;
margin-top: 2rem;
margin-bottom: 5rem;
padding: 2rem;
}
.todos-section h1 {
font-size: 30px;
}
.todo-item {
background-color: #fff;
border: 1px solid #f0f0f0;
display: flex;
justify-content: space-between;
padding: 0px 10px;
}
.todo-item-buttons {
align-self: center;
}
.todo-item-buttons button {
width: 25px;
height: 25px;
border: 0;
border-radius: 4px;
margin-right: 2px;
}
.completed-btn {
color: #fff;
background-color: #7ac27a;
}
.delete-btn {
color: #fff;
background-color: #d8534d;
}
.add-task-container {
padding-left: 3rem;
}
.add-task-container input {
height: 1.8rem;
margin-left: 20px;
border: 1px solid #e4e4e4;
border-radius: 5px;
padding-left: 1rem;
width: 80%;
}
hr {
margin-top: 2rem;
margin-bottom: 1rem;
}
.save-btn-container {
display: flex;
justify-content: flex-end;
margin-top: 1rem;
}
#save-btn {
background-color: #3579b6;
color: #fff;
border-radius: 5px;
border: 0;
width: 6rem;
height: 2rem;
cursor: pointer;
}