-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
328 lines (277 loc) · 10.2 KB
/
index.html
File metadata and controls
328 lines (277 loc) · 10.2 KB
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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Deskripsi situs web Anda">
<meta name="keywords" content="Novel BTTH, Manhua BTTH, Komik btth, Nonton btth, battle through the heavens">
<meta name="author" content="Aikacungwen Manhua">
<!-- Favicon -->
<link rel="icon" href="/favicon.ico" type="image/x-icon">
<!-- Open Graph Meta Tags -->
<meta property="og:title" content="Aikacungwen Manhua">
<meta property="og:description" content="Baca Komik BTTH bahasa Indonesia, Baca Manhua BTTH Bahasa Indonesia">
<meta property="og:image" content="/favicon.jpg">
<meta property="og:url" content="/index.html">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Aikacungwen Manhua">
<meta name="twitter:description" content="Baca Komik BTTH bahasa Indonesia, Baca Manhua BTTH Bahasa Indonesia">
<meta name="twitter:image" content="/favicon.jpg">
<title>Aikacungwen Manhua</title>
<style>
body {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
max-width: 800px;
margin: 0 auto;
background-color: #333;
color: #fff;
padding-bottom: 60px; /* Sesuaikan dengan tinggi footer */
}
header {
grid-column: span 2;
text-align: center;
border-bottom: 2px solid #000;
background-color: #000;
padding: 10px;
}
header img {
display: block;
margin: 0 auto;
margin-bottom: 10px;
width: 100px;
}
nav {
text-align: center;
margin-bottom: 20px;
z-index: 3; /* Tambahkan nilai z-index di sini */
}
nav a {
margin: 0 10px;
color: silver;
text-decoration: none;
}
table {
width: 100%;
border-collapse: collapse;
background-color: #555;
border: 2px solid #555;
}
th, td {
padding: 10px;
text-align: center;
color: #fff;
}
th {
background-color: #444;
}
.cover-container {
position: relative;
text-align: center;
width: 180px;
height: 290px;
margin-bottom: 20px; /* Atur jarak ke elemen berikutnya */
z-index: 1;
}
.cover-container img {
width: 100%;
height: 100%;
object-fit: cover;
border-radius: 8px;
transition: transform 0.3s ease-in-out;
}
.cover-container:hover img {
transform: scale(1.1);
}
.read-now {
display: inline-block;
font-size: 12px;
line-height: 1;
position: absolute;
z-index: 1;
bottom: 10px; /* Sesuaikan nilai bottom sesuai dengan kebutuhan Anda */
left: 50%;
transform: translateX(-50%);
background: white;
padding: 5px;
border-radius: 10px;
color: black; /* Text color for better visibility */
width: calc(100% - 20px); /* Menggunakan calc() untuk menghitung lebar sesuai kebutuhan */
max-width: 180px; /* Menyamakan dengan lebar cover-container */
overflow: hidden;
text-overflow: ellipsis;
}
footer {
position: fixed;
bottom: 0;
left: 0; /* Ubah dari left: 50% menjadi left: 0 */
width: 100%;
text-align: center;
background-color: #444;
padding: 10px;
clear: both;
z-index: 2;
margin-top: 20px;
}
footer p {
margin: 0;
color: silver;
}
.footer-link {
color: red;
text-decoration: none;
}
.footer-link:hover {
color: red;
}
.dropdown {
position: relative;
display: inline-block;
z-index: 3; /* Tambahkan nilai z-index di sini */
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 1;
text-align: center;
transform: translateX(0%); /* Ubah nilai transform di sini */
}
.dropdown:hover .dropdown-content {
display: block;
}
.dropdown-content a {
color: black;
padding: 12px 16px;
text-decoration: none;
display: block;
}
.dropdown-content a:hover {
background-color: #f1f1f1;
}
/* Style untuk mode desktop */
@media (min-width: 768px) {
.cover-container {
width: 180px;
height: 290px;
}
.grid-container {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 20px;
margin-bottom: 40px;
}
}
/* Tambahkan ini pada bagian CSS Anda */
@media (max-width: 768px) {
body {
display: block; /* Ganti grid menjadi blok pada mode ponsel */
}
.grid-container {
display: grid;
grid-template-columns: repeat(2, 1fr); /* Ganti jumlah kolom menjadi 2 pada mode ponsel */
gap: 30px;
}
.cover-container {
width: 100%; /* Gunakan lebar 100% pada mode ponsel */
margin-bottom: 20px; /* Atur ruang antar cover-container pada mode ponsel */
}
}
.dropdown {
position: relative;
}
.dropdown-content {
display: none;
position: absolute;
top: calc(100% + 10px); /* Menempatkan dropdown di bawah tombol */
left: 50%; /* Pusat horizontal */
transform: translateX(-50%); /* Pusat horizontal */
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
z-index: 3;
text-align: center;
}
.dropdown:hover .dropdown-content {
display: block;
}
@media (max-width: 768px) {
.grid-container {
display: grid;
grid-template-columns: repeat(2, 1fr); /* Ganti jumlah kolom menjadi 2 pada mode ponsel */
gap: 10px; /* Mengurangi jarak antara grid container pada mode ponsel */
margin-bottom: 20px; /* Atur ruang bawah pada mode ponsel */
}
.cover-container {
width: 100%; /* Gunakan lebar 100% pada mode ponsel */
margin-bottom: 10px; /* Atur ruang antar cover-container pada mode ponsel */
}
}
</style>
<script type='text/javascript' src='//capturescaldsomewhat.com/f6/06/4d/f6064d13465eb067aedc319235a586f0.js'></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-N198D4VMTL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-N198D4VMTL');
</script>
</head>
<body>
<header>
<a href="index.html"><img src="https://blogger.googleusercontent.com/img/a/AVvXsEhfPFxQVx-IKQ9cRbUjAlD4-R3iH_4icxQvlC3lIlpYojWDSHWHwkZd5NoXaNhoFrJJuWQii7e9SU0VLHW6OfsNbwDqe55LDMC2JgSVz746FjrzoLAjx3I2YKIngw6PgaTSxvQgu9hcTvBw_KCfFx8SK2wv-X9QmFcCkrbKtODgAWC2UV6jImlB5uxySAw=w800" alt="Logo Website"></a>
<nav>
<table>
<tr>
<th class="dropdown">
<span>Menu</span>
<div class="dropdown-content">
<a href="https://t.me/aikacungwen">Join Telegram</a>
<a href="https://saweria.co/aikacungwen">Donasi</a>
<a href="https://play.1ac.site/">Nonton Donghua</a>
<a href="/sitemap.html">Sitemap</a>
</div>
</th>
</tr>
</table>
</nav>
</header>
<!-- Container untuk grid desktop -->
<div class="grid-container">
<div class="cover-container">
<a href="post.html">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgEIcR_ilwg-jq3AujbufvALhuSqg0iAAATA1jo6-p8LSJ2V4S44FEnJtUWe8a7MNmtK_xtIK2TCS5q1kKvO4rKGXMkGI8NXt6xm5ydDgFWdSOzUyUJ2il2FkH0uishvyDovNcgGJVJOmxnR0NoNraUDdso1xVpsQLYxS42aQP-i_jhv3J651cSDOfwmjY/s1047/IMG_20231012_064551_933.jpg" alt="Cover Komik">
<div class="read-now">
Manhua BTTH
</div>
</a>
</div>
<div class="cover-container">
<a href="https://www.aikacungwen.online/2023/12/soul-land-movie-battle-of-two-god.html">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhAZqzBy5GScVabFXSPwrGNf1Hej37tSMURSf78KWsNpByJEiWd8HirvJ75DHF0CZSwa0bcWPMh2cXD5RTAPORdV-A5NO3Bue-apkYAKH7x6VUzKkgZhK8uwxl4LIPprZIXeOa1S7FmVWnmK8g9ao14iFI_-IymYaHgRmg1pnmRjgrxvm2XMTOZMfb-i10k/s656/images%20-%202023-12-02T122321.498.jpeg" alt="Cover Komik">
<div class="read-now">
Soul Land Movie 120 menit
</div>
</a>
</div>
<div class="cover-container">
<a href="wdqk/episode1.html">
<img src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi8yyDblKUCfMe4b0mDg4p_fgEcl0UkPyETee7fN9qazDjKCDFq_HJriT5RBbEf1XTWWOyy7fdzbin5nzAVr6FNpucVfZf2BAxzeMR4RXqDEhF2E4GTs3Bcod6qv_jiGvot16VcKBHH4j_YrFlmYZVY0CNtm7dVuGmcjCe9VnuL2RZOKDMRLVAHMFS4RKnu/w600/006T5GTEgy1hgoqjzoo40j32o04qo7wk%20%282%29.jpg" alt="Cover Komik">
<div class="read-now">
Wu Dong Qian Kun Season 4
</div>
</a>
</div>
<!-- Tambahkan cover-container lainnya sesuai kebutuhan -->
</div>
<footer>
<p>© 2023 Aikacungwen Manhua.</p>
<p>Theme By: <a href="https://play.1ac.site/" style="color: #fff;">@Aikacungwen</a>.</p>
</footer>
</body>
</html>