-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
58 lines (51 loc) · 934 Bytes
/
index.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
body {
margin: 0;
padding: 10px;
font-family: Arial, Helvetica, sans-serif;
min-width: 400px;
}
input {
width: 100%;
padding: 10px;
box-sizing: border-box;
border: 1px solid #7C83FD;
border-radius: 0.3rem;
margin-bottom: 0.25rem;
}
button {
background: #7C83FD;
color: white;
padding: 10px 20px;
margin: 0.25rem 0;
border: 1px solid #7C83FD;
font-weight: bold;
border-radius: 0.3rem;
}
.removeButton {
background: transparent;
border: none;
}
#delete-btn {
background: white;
border: 1px solid #96BAFF;
color: #96BAFF;
}
ul {
margin-top: 20px;
list-style: none;
padding-left: 0;
}
li {
margin-top: 5px;
background: #FDBAF8;
border-radius: 2px;
padding: 0.75rem;
}
a {
color: #fff;
text-decoration: none;
background: #ECA3F5;
font-weight: bolder;
border-radius: 2px;
font-size: 0.9rem;
}