-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbookExchangeSite.css
78 lines (68 loc) · 1.21 KB
/
bookExchangeSite.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
.book-exchange-site {
display: flex;
flex-direction: column;
width: 100%;
height: 100vh;
overflow-y: auto;
}
.user-header {
width: 100%;
height: 50px;
display: flex;
justify-content: space-between;
background-color: grey;
}
.book-exchange-table-container {
display: flex;
justify-content: center;
padding-top: 20px;
padding-bottom: 40px;
height: 90vh;
background-color: lightgrey;
}
.books-table {
margin: 20px;
border: solid 1px grey;
width: 80%;
min-height: 80%;
overflow-y: auto;
border-collapse: collapse;
}
tr {
padding-right: 20px;
padding-left: 20px;
min-height: 30px;
border: 1px solid black;
}
th,
td {
border: 1px solid black;
text-align: center;
}
.title {
display: flex;
align-items: center;
padding-left: 20px;
}
.login-container {
display: flex;
align-items: center;
justify-content: flex-end;
padding: 20px;
box-sizing: border-box;
}
.user-name-input {
width: 300px;
height: 30px;
margin-right: 10px;
padding-left: 10px;
}
.submit-button {
width: 125px;
height: 30px;
}
.book-info-input {
width: 255px;
height: 25px;
padding-left: 10px;
}