-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathstyle.css
95 lines (81 loc) · 1.25 KB
/
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
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
/*
* Title: To Do List CSS file
* Description: This file has all the styles associated with the To Do App project
* Author: Sumit Saha ( Learn with Sumit )
* Date: 12/16/2020
*
*/
* {
box-sizing: border-box;
}
.container {
background: #d3efdf;
padding: 25px;
max-width: 760px;
margin: 25px auto;
overflow: hidden;
border-radius: 10px;
border: 4px solid #b1c9bb;
font-family: sans-serif;
}
h1,
h2 {
margin: 0;
text-align: center;
text-transform: uppercase;
}
h2 {
font-size: 20px;
text-align: center;
border-bottom: 1px solid #b1c9bb;
padding: 0 0 10px;
color: #57635c;
}
.logo {
width: 100%;
text-align: center;
}
.logo img {
width: 100px;
}
.new-task-container {
text-align: center;
}
.box {
padding: 10px 15px;
border: 2px solid #b1c9bb;
border-radius: 5px;
background: #fff;
margin: 15px 0;
}
.todo-list {
float: left;
width: 46%;
}
.complete-list {
float: right;
width: 46%;
}
ul {
list-style: none;
padding: 0;
margin: 0;
}
li {
padding: 10px;
border-bottom: 1px dotted #ccc;
}
.update {
float: right;
background-color: blue;
color: white;
border: 0px;
padding: 3px 5px;
}
.delete {
float: right;
background-color: red;
color: white;
border: 0px;
padding: 3px 5px;
}