forked from anuragverma108/SwapReads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
suspense-thriller.html
163 lines (154 loc) · 4.75 KB
/
suspense-thriller.html
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Suspense Thriller Books</title>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
background-color: #ffb2a8;; /* Light gray background */
overflow-y: scroll;
scrollbar-width: thin;
scrollbar-color: #888 #f1f1f1;
cursor: default;
}
body::-webkit-scrollbar {
width: 12px;
}
body::-webkit-scrollbar-track {
background: #f1f1f1;
}
body::-webkit-scrollbar-thumb {
background-color: #888;
border-radius: 6px;
border: 3px solid #f1f1f1;
}
body::-webkit-scrollbar-thumb:hover {
background-color: #555;
}
.card-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.book-card {
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
margin: 15px;
padding: 20px;
width: 250px;
transition: transform 0.3s;
}
.book-card:hover {
transform: translateY(-5px);
}
.book-title {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
color: #333;
}
.book-author {
font-size: 14px;
color: #777;
margin-bottom: 15px;
}
</style>
</head>
<body>
<h1>Suspense Thriller Books</h1>
<div class="card-container" id="bookCards">
<!-- Hardcoded book cards for Suspense Thriller genre -->
<div class="book-card">
<p class="book-title">The Girl with the Dragon Tattoo</p>
<p class="book-author">by Stieg Larsson</p>
</div>
<div class="book-card">
<p class="book-title">Gone Girl</p>
<p class="book-author">by Gillian Flynn</p>
</div>
<div class="book-card">
<p class="book-title">The Silent Patient</p>
<p class="book-author">by Alex Michaelides</p>
</div>
<div class="book-card">
<p class="book-title">Big Little Lies</p>
<p class="book-author">by Liane Moriarty</p>
</div>
<div class="book-card">
<p class="book-title">The Woman in the Window</p>
<p class="book-author">by A.J. Finn</p>
</div>
<div class="book-card">
<p class="book-title">Before I Go to Sleep</p>
<p class="book-author">by S.J. Watson</p>
</div>
<div class="book-card">
<p class="book-title">The Wife Between Us</p>
<p class="book-author">by Greer Hendricks & Sarah Pekkanen</p>
</div>
<div class="book-card">
<p class="book-title">In the Woods</p>
<p class="book-author">by Tana French</p>
</div>
<div class="book-card">
<p class="book-title">Sharp Objects</p>
<p class="book-author">by Gillian Flynn</p>
</div>
<div class="book-card">
<p class="book-title">Behind Closed Doors</p>
<p class="book-author">by B.A. Paris</p>
</div>
<div class="book-card">
<p class="book-title">The Chain</p>
<p class="book-author">by Adrian McKinty</p>
</div>
<div class="book-card">
<p class="book-title">The Couple Next Door</p>
<p class="book-author">by Shari Lapena</p>
</div>
<div class="book-card">
<p class="book-title">The Last Mrs. Parrish</p>
<p class="book-author">by Liv Constantine</p>
</div>
<div class="book-card">
<p class="book-title">The Other Woman</p>
<p class="book-author">by Sandie Jones</p>
</div>
<div class="book-card">
<p class="book-title">Then She Was Gone</p>
<p class="book-author">by Lisa Jewell</p>
</div>
<div class="book-card">
<p class="book-title">Final Girls</p>
<p class="book-author">by Riley Sager</p>
</div>
<div class="book-card">
<p class="book-title">The Lying Game</p>
<p class="book-author">by Ruth Ware</p>
</div>
<div class="book-card">
<p class="book-title">The Good Daughter</p>
<p class="book-author">by Karin Slaughter</p>
</div>
<div class="book-card">
<p class="book-title">The Guest List</p>
<p class="book-author">by Lucy Foley</p>
</div>
<div class="book-card">
<p class="book-title">The Chain</p>
<p class="book-author">by Adrian McKinty</p>
</div>
<div class="book-card">
<p class="book-title">The Inheritance Games</p>
<p class="book-author">by Jennifer Lynn Barnes</p>
</div>
</div>
</body>
</html>