-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbookList.css
79 lines (63 loc) · 997 Bytes
/
bookList.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
68
69
70
71
72
73
74
75
76
77
78
79
table {
margin: 0 auto;
}
td, th {
border: 1px solid navy;
margin: 0px;
padding: 5px;
}
th {
background: lightskyblue;
}
.striped {
background: rgb(200, 230, 255);
}
h1 {
color: navy;
text-align: center;
}
form {
text-align: center;
margin-top: 2%;
}
.removable {
background-color: #cfcfcf;
}
.striped .removable {
background-color: #afafaf;
}
th.removable {
background-color: #8c8c8c;
}
.unHide {
display: none;
margin: 0 auto;
}
.hidden {
display: none;
}
.bookForm {
background: skyblue;
text-align: left;
padding-bottom: 5px;
position: absolute;
bottom: 5%;
}
.bookForm form {
text-align: left;
padding: 0 10px;
}
.bookForm label, .bookForm input {
margin: 3px 0px;
}
.bookForm input {
width: 60%;
}
#submit {
margin-left: 10px;
}
.bookForm h3 {
color: navy;
text-align: center;
padding-top: 3px;
}