-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
103 lines (85 loc) · 1.53 KB
/
styles.css
File metadata and controls
103 lines (85 loc) · 1.53 KB
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
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f9;
color: #333;
}
.container {
max-width: 1200px;
margin: 0 auto;
}
h1, h2 {
color: #444;
}
.search-section {
margin-bottom: 20px;
}
input[type="text"] {
padding: 10px;
width: 300px;
border: 1px solid #ccc;
border-radius: 4px;
}
button {
padding: 10px 20px;
background-color: #007bff;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
button:hover {
background-color: #0056b3;
}
.main-content {
display: flex;
gap: 20px;
}
.recommendations, .library {
flex: 1;
}
.book-list {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.book-card {
background-color: white;
border: 1px solid #ddd;
border-radius: 8px;
padding: 15px;
width: 200px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.book-card img {
max-width: 100%;
height: auto;
border-radius: 4px;
}
.book-card h3 {
font-size: 16px;
margin: 10px 0;
}
.book-card p {
font-size: 14px;
color: #666;
}
.button-group {
display: flex;
gap: 5px;
margin-top: 10px;
}
.delete-btn {
background-color: #dc3545 !important;
}
.delete-btn:hover {
background-color: #c82333 !important;
}
.update-btn {
background-color: #007bff !important;
}
.update-btn:hover {
background-color: #0056b3 !important;
}