-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
52 lines (46 loc) · 793 Bytes
/
index.css
File metadata and controls
52 lines (46 loc) · 793 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
body{
margin: 0 auto;
padding: 10px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
max-width: 300px;
}
label{
color: #5f9341;
font-weight: bold;
}
input{
border: #5f9341 solid 2px;
border-radius: 3px;
width: 100%;
padding: 5px;
box-sizing: border-box;
}
button{
margin-top: 1px;
border-radius: 2px;
width: 147px;
padding: 7px;
background-color: #5f9341;
color: white;
font-weight: bold;
border: 1px solid #5f9341;
}
button:hover{
background-color: #41981e;
transition-duration: 0.5s;
}
#delete-btn{
background-color: white;
color: #5f9341;
}
#delete-btn:hover{
background-color: #d34a49;
color: white;
}
ul{
list-style-type: none;
padding-left: 0;
}
a{
color: #5f9341;
}