-
Notifications
You must be signed in to change notification settings - Fork 0
/
style_sheet.css
55 lines (51 loc) · 887 Bytes
/
style_sheet.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
body{
margin: 0;
padding: 10px;
font-family: Arial, Helvetica, sans-serif;
min-width: 400px;
}
input{
display: block;
height: 22px;
width: 450px;
padding: 10px;
border: 2px solid #5f9341;
font-size: 17px;
margin-bottom: 4px;
}
input:focus{
background-color: rgb(210, 232, 239);
border: 2px solid #5f9341;
}
button{
font-weight: bold;
padding: 4px;
color: white;
background-color: #5f9341;
cursor: pointer;
height: 33px;
width: 105px;
border: none
}
ul{
list-style: none;
padding-left:0 ;
margin-top: 20px;
}
a{
text-decoration: underline;
color: #5f9341;
}
li{
margin-top: 5px;
}
#delete-btn{
font-weight: bold;
padding: 4px;
background-color: white;
color: #5f9341;
cursor: pointer;
height: 33px;
width: 105px;
border: 2px solid #5f9341
}