-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
53 lines (49 loc) · 945 Bytes
/
styles.css
File metadata and controls
53 lines (49 loc) · 945 Bytes
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
body {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
}
.todo {
background-color: #333;
color: #fff;
padding: 20px;
width: 300px;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
text-align: center;
}
ul {
padding: 0;
}
li {
margin-bottom: 15px;
padding: 10px;
border: 1px solid #fff;
border-radius: 5px;
list-style: none;
display: flex;
justify-content: space-between;
align-items: center;
}
.but {
border: none;
color: red;
background-color: transparent;
cursor: pointer;
}
#addinput {
background-color: blue;
color: #fff;
padding: 5px 10px;
border: none;
border-radius: 5px;
cursor: pointer;
}
#todoinput {
padding: 5px;
border-radius: 5px;
border: 1px solid #ccc;
margin-bottom: 10px;
}