-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsellingStyle.css
151 lines (129 loc) · 2.55 KB
/
sellingStyle.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Lato&family=Lora&family=Roboto&family=Trocchi&display=swap');
.btn,
.create-btn {
background-color: #004d99;
padding: 8px 12px;
border: none;
cursor: pointer;
text-decoration: none;
color: #fff;
font-weight: bold;
}
.btn:hover,
.create-btn:hover{
background-color: #003366;
}
.btn a {
text-decoration: none;
color: #fff;
font-weight: bold;
}
.create-btn{
font-size: 16px;
width: 150px;
height: 40px;
border-radius: 5px;
margin: 20px;
}
.main-container{
display: flex;
justify-content: center;
align-items: center;
background-color: rgb(227, 227, 227);
}
.create-container{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
height: 90%;
background-color: #fff;
margin-top: 20px;
margin-bottom: 20px;
border-radius: 5px;
box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}
#bookListingForm{
border-radius: 5px;
background-color: transparent;
}
#bookListingForm,
#auctionFields{
display: flex;
flex-direction: column;
}
.create-container form{
display: flex;
justify-content: center;
width: 60rem;
height: auto;
padding: 20px;
}
.create-container select,
#auctionFields select,
.create-container input,
#auctionFields input{
padding: 8px;
box-sizing: border-box;
width: 100%;
margin-bottom: 10px;
max-width: 700px;
}
textarea {
width: 695px;
height: 100px;
}
.row{
display: flex;
flex-direction: row;
justify-content:space-around;
}
table {
width: 100%;
}
#auctionFields table td:nth-child(1),
table td:nth-child(1) {
width:30%;
}
#auctionFields table td:nth-child(2),
table td:nth-child(2) {
width: 70%;
}
.createlisting-btn{
display: flex; justify-content: center; margin: 10px;
}
/* .book-container{
display: flex;
justify-content: center;
align-items: flex-start;
flex-direction: column;
} */
#listing-header{
text-align: center;
letter-spacing: 1px;
font-family: "Roboto Mono", monospace;
font-size: 28px;
}
.book-list{
padding: 40px;
display: flex;
gap: 20px;
flex-wrap: wrap;
justify-content: flex-start;
cursor: pointer;
}
.book{
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
border-radius: 4px;
}
/* Responsive styles for smaller screens */
@media (max-width: 768px) {
.create-container form {
width: 100%;
padding: 10px;
}
table td:nth-child(1),
table td:nth-child(2) {
width: 100%;
}
}