-
Notifications
You must be signed in to change notification settings - Fork 0
/
Book.css
128 lines (113 loc) · 2.22 KB
/
Book.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
.hor_scroll{
height: auto;
display: flex;
justify-content: center;
align-items: center;
}
body{
/* background-image: url(images/background3.jpg); */
background-color: #4e1d04a8;
}
.hor_scroll .row{
width: 95%;
margin: auto;
display: flex;
justify-content: space-between;
overflow-x: auto;
scroll-behavior: smooth;
}
.hor_scroll .row::-webkit-scrollbar{
display: none;
}
.hor_scroll .row .box{
/* border: 1px solid black; */
min-width: 270px;
max-width: 270px;
padding: 10px;
height: 410px;
margin-bottom: 20px;
margin-left: 20px;
align-items: center;
background-color: #dcbe87a8;
border-radius: 7px;
transition: linear 0.25s;
margin-top: 30px;
}
.outer .type{
color: white;
text-decoration: underline;
text-align: center;
margin-top: 40px;
}
.hor_scroll .fa-chevron-left{
position: relative;
left: 0.5%;
width: 30px;
height: 30px;
background-color: rgba(222, 220, 220, 0.628);
color: white;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 20px;
cursor: pointer;
z-index: 9999;
transition: 0s;
}
.hor_scroll .fa-chevron-right{
position: relative;
vertical-align: middle;
right: 0.5%;
width: 30px;
height: 30px;
background-color: rgba(222, 220, 220, 0.628);
color: white;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-size: 20px;
cursor: pointer;
z-index: 9999;
transition: 0s;
}
.fa-chevron-left:active , .fa-chevron-right:active{
font-size: 25px;
}
.hor_scroll .row .box:hover{
scale: 1.04;
}
.hor_scroll .row .box:hover img{
scale: 1.01;
}
.row .box a{
text-decoration: none;
}
.row .box .heading{
color: rgb(53, 53, 53);
position: relative;
left: 0;
font-weight: 600;
margin-top: 0;
}
.row .box .content{
color: rgb(53, 53, 53);
position: relative;
left: 0;
margin-top: 0;
font-size: 15px;
}
.row .box img{
height: 300px;
width: 250px;
position: relative;
left: 0;
top: 0;
transition: 0.5s;
}