-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (66 loc) · 1.26 KB
/
style.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
/* Reset default margin and padding */
body, h1, h2, p, form {
margin: 0;
padding: 0;
}
/* Header styles */
header {
color: #130808;
padding: 30px;
text-align: center;
font-family: 'Times New Roman', Times, serif;
font-size: 30px;
}
/* Body styles */
body {
background-image: url("pic 3.jpg");
background-size: cover;
background-position: center;
font-family: Arial, sans-serif;
}
/* Section styles */
section {
padding: 20px;
font-family: Arial, sans-serif;
font-size: 20px;
}
/* Search form styles */
#searchForm {
display: flex;
margin-bottom: 20px;
width: 20px;
}
#searchInput {
flex-grow: 1;
padding: 10px;
font-size: 16px;
background-color: #fff;
border: 1px solid #ccc;
font-family: Arial, sans-serif;
}
/* Book details styles */
#bookContainer {
display: flex;
flex-wrap: wrap;
}
.bookCard {
width: 300px;
margin: 50px;
padding: 10px;
border: 5px solid #ccc;
border-color: rgb(6, 6, 5);
background-color: #f0edeb;
font-family: Arial, sans-serif;
}
.bookCard h3 {
margin-bottom: 10px;
color: #161414;
font-size: 18px;
font-family: initial;
}
.bookCard p {
margin-bottom: 5px;
color: #100202;
font-size: 16px;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}