-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
136 lines (134 loc) · 2.42 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
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
*{
margin: 0;
padding: 0;
font-family: 'Lato-Black', sans-serif;
}
/* Navbar */
body{
background-color: #87af894a;
}
.logo{
display: flex;
font-size: 25px;
}
.logo1{
color: chocolate;
}
.logo2{
padding-left: 4px;
color: #4d8080;
}
nav{
display: flex;
justify-content: space-around;
height: 49px;
align-items: center;
background-color: #F4F1EA;
box-shadow: 3px 3px 5px 6px #ccc;
}
nav li{
list-style: none;
height: 47px;
width: auto;
}
nav li a{
text-decoration: none;
color: #382110;
font-size: 26px;
font-family: 'Lato', sans-serif;
font-weight: bolder;
}
nav li:hover{
border: 1px solid #382110;
}
/* head */
.head1{
color: #808a77;
display: flex;
height: 200px;
width: 1535px;
margin-right: 3px;
justify-content: center;
align-items: center;
font-size: 25px;
background-color: #e7efdf;
}
/* books section */
.books{
height:auto;
/* border: 2px solid black; */
display: flex;
flex-direction: column;
/* justify-content: center; */
justify-content: space-around;
}
.row-1, .row-2{
display: flex;
justify-content: center;
justify-content: space-around;
}
.book{
/* border: 2px solid black; */
display: inline-flex;
width: 404px;
margin-top: 10px;
margin-bottom: 10px;
box-shadow: 3px 3px 5px 6px #ccc;
}
.book h2{
padding-left: 5px;
font-size: 18px;
}
.details{
display: flex;
flex-direction: column;
background-color: #F4F1EA;
}
.details p{
padding-left: 9px;
padding-top: 5px;
}
.details h4{
padding-top: 3px;
padding-left: 10px;
padding-bottom: 4px;
color: grey;
font-size: 14px;
}
.details button{
width: 174px;
height: 33px;
border: none;
}
#wish, #wish a{
background-color: #d4cdbb;
color: black;
font-weight: 500;
}
#amazon, #amazon a{
background-color: #F8C15D;
color: black;
font-weight: 500;
}
.details button a{
text-decoration: none;
cursor: pointer;
}
.details button:hover{
border: 2px solid white;
}
.rating{
font-size: 12px;
}
.book div{
justify-content: space-around;
align-items: center;
}
.book img{
height: 300px;
}
.book:hover{
margin-top: 4px;
margin-left: 4px;
box-shadow: 9px 9px 5px 5px #ccc;
}