forked from anuragverma108/SwapReads
-
Notifications
You must be signed in to change notification settings - Fork 0
/
science-fiction.html
159 lines (150 loc) · 4.58 KB
/
science-fiction.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Science Fiction Books</title>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
background-color: #ffb2a8; /* Light blue 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>Science Fiction Books</h1>
<div class="card-container" id="bookCards">
<!-- Hardcoded book cards for Science Fiction genre -->
<div class="book-card">
<p class="book-title">Dune</p>
<p class="book-author">by Frank Herbert</p>
</div>
<div class="book-card">
<p class="book-title">Neuromancer</p>
<p class="book-author">by William Gibson</p>
</div>
<div class="book-card">
<p class="book-title">Snow Crash</p>
<p class="book-author">by Neal Stephenson</p>
</div>
<div class="book-card">
<p class="book-title">The Left Hand of Darkness</p>
<p class="book-author">by Ursula K. Le Guin</p>
</div>
<div class="book-card">
<p class="book-title">Foundation</p>
<p class="book-author">by Isaac Asimov</p>
</div>
<div class="book-card">
<p class="book-title">Hyperion</p>
<p class="book-author">by Dan Simmons</p>
</div>
<div class="book-card">
<p class="book-title">The Expanse: Leviathan Wakes</p>
<p class="book-author">by James S.A. Corey</p>
</div>
<div class="book-card">
<p class="book-title">Kindred</p>
<p class="book-author">by Octavia E. Butler</p>
</div>
<div class="book-card">
<p class="book-title">The Time Machine</p>
<p class="book-author">by H.G. Wells</p>
</div>
<div class="book-card">
<p class="book-title">Ender's Game</p>
<p class="book-author">by Orson Scott Card</p>
</div>
<div class="book-card">
<p class="book-title">The War of the Worlds</p>
<p class="book-author">by H.G. Wells</p>
</div>
<div class="book-card">
<p class="book-title">The Three-Body Problem</p>
<p class="book-author">by Liu Cixin</p>
</div>
<div class="book-card">
<p class="book-title">Altered Carbon</p>
<p class="book-author">by Richard K. Morgan</p>
</div>
<div class="book-card">
<p class="book-title">Brave New World</p>
<p class="book-author">by Aldous Huxley</p>
</div>
<div class="book-card">
<p class="book-title">The Martian</p>
<p class="book-author">by Andy Weir</p>
</div>
<div class="book-card">
<p class="book-title">Do Androids Dream of Electric Sheep?</p>
<p class="book-author">by Philip K. Dick</p>
</div>
<div class="book-card">
<p class="book-title">The Stars My Destination</p>
<p class="book-author">by Alfred Bester</p>
</div>
<div class="book-card">
<p class="book-title">Fahrenheit 451</p>
<p class="book-author">by Ray Bradbury</p>
</div>
<div class="book-card">
<p class="book-title">Children of Time</p>
<p class="book-author">by Adrian Tchaikovsky</p>
</div>
<div class="book-card">
<p class="book-title">Red Mars</p>
<p class="book-author">by Kim Stanley Robinson</p>
</div>
</div>
</body>
</html>