-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (35 loc) · 690 Bytes
/
Copy pathstyle.css
File metadata and controls
41 lines (35 loc) · 690 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
body {
font-family: sans-serif;
margin: 40px;
}
h1 {
color: purple;
}
input {
padding: 8px;
width: 200px;
}
button {
padding: 8px 12px;
margin-left: 5px;
}
ul {
margin-top: 20px;
padding: 0;
list-style-type: none;
}
li {
background: #f2f2f2;
margin-bottom: 5px;
padding: 8px;
display: flex;
justify-content: space-between;
align-items: center;
}
.delete {
background: red;
color: white;
border: none;
padding: 4px 8px;
cursor: pointer;
}