-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBooks.css
More file actions
50 lines (40 loc) · 979 Bytes
/
Books.css
File metadata and controls
50 lines (40 loc) · 979 Bytes
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
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
#loading-animation {
display: none;
/* Add your custom loading animation styles here */
}
#login-container {
display: none;
/* Add your login container styles here */
}
#book-list-container {
margin-top: 20px;
/* Add your book list container styles here */
}
#book-list {
list-style: none;
padding: 0;
}
#book-list li {
margin-bottom: 10px;
/* Add your book list item styles here */
}
#pagination-loader {
display: none;
/* Add your pagination loader styles here */
}
#cart-container {
margin-top: 20px;
/* Add your cart container styles here */
}
#cart-items {
list-style: none;
padding: 0;
}
#checkout-button {
/* Add your checkout button styles here */
}