-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (67 loc) · 1.26 KB
/
style.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
59
60
61
62
63
64
65
66
67
body{
border-top-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-right-style: solid;
background-color: rgb(255, 228, 196);
}
h1{
border-bottom-style: solid;
padding-bottom: 12px;
color: rgb(255, 0, 25);
border-bottom-color: blue;
font-style: italic;
text-align: center;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
text-align: center;
padding: 7px;
}
table {
margin: 4rem ;
width: 90%;
}
th {
background-color: aqua;
}
td {
background-color: aliceblue;
}
input,textarea{
width: 250px;
padding: 8px;
margin-top: 5px;
border: 3px solid black;
border-radius: 4px;
}
label {
display: block;
margin-top: 15px;
color:rgb(255, 0, 157);
}
.edit-button,#addButton{
margin: 10px;
padding: 8px 16px;
background-color: #4CAF50;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
.delete-button,#saveButton{
margin: 10px;
padding: 8px 16px;
background-color: #e71010;
color: #fff;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover{
color: lightgreen;
}
.hide {
display: none;
}