-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
74 lines (60 loc) · 1.09 KB
/
Copy pathmain.css
File metadata and controls
74 lines (60 loc) · 1.09 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
body {
margin: 0;
padding: 10px;
font-family: Georgia, 'Times New Roman', Times, serif;
min-width: 400px;
}
button {
margin-bottom: 4px;
padding: 10px 20px;
background-color: rgb(255, 252, 47);
color: black;
font-weight: bold;
border: 1px solid green;
}
#delete-btn {
background: white;
color: black;
}
#delete-btn:hover {
background: black;
color: rgb(255, 252, 47);
}
input {
width: 100%;
padding: 10px;
box-sizing: border-box; /* 100% considers padding as well */
border: 1px solid black;
margin-bottom: 5px;
}
#div {
background-color: cadetblue;
height: 100px;
}
ul {
margin-top: 10px;
list-style: none;
padding: 0;
}
li {
margin-top: 10px;
}
a {
color: green;
text-decoration: none;
font-size: 14px;
}
.del-btn, .copy-btn {
display: inline;
background: white;
border: none;
color: black;
padding: 2px;
margin-left: 6px;
}
button:hover {
cursor: pointer;
}
img {
height: 15px;
}