-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
445 lines (435 loc) · 25.9 KB
/
index.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
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<link rel="stylesheet" href="./src/output.css">
<link rel="stylesheet" href="./src/style.css">
<style>
/* For WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
width: 8px; /* Width of the vertical scrollbar */
height: 8px; /* Height of the horizontal scrollbar */
}
::-webkit-scrollbar-track {
background: #f1f1f1; /* Background of the scrollbar track */
}
::-webkit-scrollbar-thumb {
background: #000; /* Color of the scrollbar thumb */
border-radius: 4px; /* Rounded corners */
}
::-webkit-scrollbar-thumb:hover {
background: #555; /* Color when hovering over the scrollbar thumb */
}
/* For Firefox */
html {
scrollbar-width: thin; /* Sets the scrollbar width to thin */
scrollbar-color: #000 #000000; /* Color of the thumb and track */
}
</style>
</head>
<body class="bg-black m-0 p-0 box-border">
<div class="flex container m-auto bg-black text-white ">
<div class="first md:w-[25%] w-[15%] sticky top-0 max-h-[100vh] flex flex-col items-start overflow-scroll">
<div class="logo p-2 w-fit hover:bg-slate-800 hover:rounded-full hover:cursor-pointer">
<svg fill="white" viewBox="0 0 24 24" aria-hidden="true"
class=" w-7 r-4qtqp9 r-yyyyoo r-dnmrzs r-bnwqim r-lrvibr r-m6rgpd r-lrsllp r-18jsvk2 r-16y2uox r-8kz0gk">
<g>
<path
d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z">
</path>
</g>
</svg>
</div>
<div class="side-bar">
<ul class="w-full text-xl space-y-4 pt-3">
<li
class="gap-2 flex justify-start items-center w-fit pr-4 hover:cursor-pointer hover:bg-slate-800 hover:rounded-full pl-2 ">
<span class="material-symbols-outlined text-3xl ">
home
</span>
<span class="text hidden md:block"> Home</span>
</li>
<li
class="gap-2 flex justify-start items-center w-fit pr-4 hover:cursor-pointer hover:bg-slate-800 hover:rounded-full pl-2 ">
<span class="material-symbols-outlined text-3xl">
search
</span>
<span class="text hidden md:block"> Explore</span>
</li>
<li
class="gap-2 flex justify-start items-center w-fit pr-4 hover:cursor-pointer hover:bg-slate-800 hover:rounded-full pl-2 ">
<span class="material-symbols-outlined text-3xl">
notifications
</span>
<span class="text hidden md:block"> Notification</span>
</li>
<li
class="gap-2 flex justify-start items-center w-fit pr-4 hover:cursor-pointer hover:bg-slate-800 hover:rounded-full pl-2 ">
<span class="material-symbols-outlined text-3xl">
mail
</span>
<span class="text hidden md:block"> Messages</span>
</li>
<li
class="gap-2 flex justify-start items-center w-fit pr-4 hover:cursor-pointer hover:bg-slate-800 hover:rounded-full pl-2 ">
<span class="material-symbols-outlined text-3xl">
grade
</span>
<Span class="text hidden md:block"> Grok</Span>
</li>
<li
class="gap-2 flex justify-start items-center w-fit pr-4 hover:cursor-pointer hover:bg-slate-800 hover:rounded-full pl-2 ">
<span class="material-symbols-outlined text-3xl">
group
</span>
<span class="text hidden md:block"> Communites</span>
</li>
<li
class="gap-2 flex justify-start items-center w-fit pr-4 hover:cursor-pointer hover:bg-slate-800 hover:rounded-full pl-2 ">
<span class="material-symbols-outlined text-3xl">
person
</span>
<span class="text hidden md:block"> Profile</span>
</li>
<li
class="gap-2 flex justify-start items-center w-fit pr-4 hover:cursor-pointer hover:bg-slate-800 hover:rounded-full pl-2 ">
<span class="material-symbols-outlined text-3xl">
more_horiz
</span>
<span class="text hidden md:block"> More</span>
</li>
</ul>
<button
class="btn-post lg:block hidden w-[200px] h-12 mt-3 text-2xl border rounded-full bg-blue-700 hover:bg-blue-600 text-white">Post</button>
<button
class="lg:hidden block rounded-full md:w-32 h-10 w-10 p-2 m-2 bg-blue-700 hover:bg-blue-600 "><span
class="material-symbols-outlined text-white">edit</span></button>
</div>
<div
class="account-details lg:flex hidden justify-around items-center mt-14 w-[200px] lg:w-[250px] px-3 py-2 hover:bg-slate-800 hover:rounded-full hover:cursor-pointer">
<div class="profile-pic ">
<svg width="40" height="40" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<!-- Circle -->
<circle cx="50" cy="50" r="50" fill="blue" />
<!-- Text -->
<text x="50" y="60" font-family="Arial" font-size="50" text-anchor="middle"
fill="white">M</text>
</svg>
</div>
<div class="details">
<div class="profile-name">Mohd Abdul Bilal</div>
<div class="profile-id text-gray-600 text-sm">@MohdAbdulBilal5</div>
</div>
<div class="more-detail">
<span class="material-symbols-outlined text-4xl">
more_horiz
</span>
</div>
</div>
<div class="profile-pic lg:hidden block m-[0.5rem] ">
<svg width="40" height="40" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg">
<!-- Circle -->
<circle cx="50" cy="50" r="50" fill="blue" />
<!-- Text -->
<text x="50" y="60" font-family="Arial" font-size="50" text-anchor="middle" fill="white">M</text>
</svg>
</div>
</div>
<div class="second border-[1px] border-x-white border-y-black md:w-[50%] w-[85%]">
<div class="middle-navbar border border-black border-b-red-50 w-[100%] h-12 sticky top-0 bg-black">
<ul class="flex justify-around items-center h-full overflow-hidden">
<li class="hover:bg-slate-800 w-1/3 text-center py-3">For you</li>
<li class="hover:bg-slate-800 w-1/3 text-center py-3">Following</li>
<li class="hover:bg-slate-800 w-1/3 text-center py-3">Web developers</li>
</ul>
</div>
<div class="write-post flex flex-col w-full ">
<div class="input-area flex m-3 justify-start items-center gap-3">
<div class="profile-pic"> <svg width="40" height="40" viewBox="0 0 100 100"
xmlns="http://www.w3.org/2000/svg">
<!-- Circle -->
<circle cx="50" cy="50" r="50" fill="blue" />
<!-- Text -->
<text x="50" y="60" font-family="Arial" font-size="50" text-anchor="middle"
fill="white">M</text>
</svg></div>
<input class="border-none bg-black plac text-xl" placeholder="Write a post..." type="text" name=""
id="">
</div>
<div class="posting-icons flex m-3 justify-between text-xl">
<div class="post-edit text-blue-600 ml-10">
<span class="material-symbols-outlined">
imagesmode
</span>
<span class="material-symbols-outlined">
gif_box
</span>
<span class="material-symbols-outlined">
tune
</span>
<span class="material-symbols-outlined">
sentiment_satisfied
</span>
<span class="material-symbols-outlined">
edit_calendar
</span>
<span class="material-symbols-outlined">
location_on
</span>
</div>
<div class="post-btn bg-blue-700 hover:bg-blue-700 px-5 py- rounded-full">
<button>Post</button>
</div>
</div>
</div>
<hr>
<div class="other-post flex m-5 gap-5 ">
<div class="other-profile-pic w-[10%]"><img class="w-10 h-10 rounded-full"
src="https://media.sproutsocial.com/uploads/2022/06/profile-picture.jpeg" alt="">
</div>
<div class="other-post-detail w-[90%]">
<div class="other-post-head flex justify-between items-center">
<div class="other-post-profile-detail flex items-start flex-col">
<div class="other-profile-name font-bold flex gap-2">
<div class="name">sujay anand</div>
<div class="other-profile-star"><span class="material-symbols-outlined text-blue-800">brightness_4</span></div>
</div>
<div class="id-and-upload-date flex gap-1">
<div class="other-profile-id text-slate-700">@imsujayanand</div>
<div class="dot text-slate-600">.</div>
<div class="other-post-upload-date text-slate-600">Jul 9</div>
</div>
</div>
<div class="other-more"><span class="material-symbols-outlined ">more_horiz</span></div>
</div>
<div class="other-post-info">
<div class="other-post-description text-wrap">🚨 The Biggest Statpadder of T20s ( A complete
thread 🧵)</div>
<div class="other-post-pic"><img class="rounded-xl my-3" src="./src/img/post1.jpg"
alt="Not showing"></div>
</div>
<div class="other-post-bottom text-slate-700 flex justify-between items-center flex-wrap">
<div class="other-post-comments flex gap-1 hover:text-white hover:cursor-pointer">
<div class="comments-icon"><span class="material-symbols-outlined">chat_bubble</span></div>
<div class="comment-number">72k</div>
</div>
<div class="other-post-shares flex gap-1 hover:text-white hover:cursor-pointer">
<div class="share-icon"><span class="material-symbols-outlined">share</span></div>
<div class="share-number">50k</div>
</div>
<div class="other-post-likes flex gap-1 hover:text-white hover:cursor-pointer">
<div class="like-icon"><span class="material-symbols-outlined">favorite</span></div>
<div class="like-number">100k</div>
</div>
<div class="other-post-status flex gap-1 hover:text-white hover:cursor-pointer">
<div class="status-icon"><span class="material-symbols-outlined">bar_chart</span></div>
<div class="status-number">150k</div>
</div>
<div class="other-post-sav-download flex gap-1 ">
<div class="save-icon"><span
class="material-symbols-outlined hover:text-white hover:cursor-pointer">bookmark</span>
</div>
<div class="download-iconr"><span
class="material-symbols-outlined hover:text-white hover:cursor-pointer">download</span>
</div>
</div>
</div>
</div>
</div>
<hr>
<div class="other-post flex m-5 gap-5 ">
<div class="other-profile-pic w-[10%]"><img class="w-10 h-10 rounded-full"
src="https://media.sproutsocial.com/uploads/2022/06/profile-picture.jpeg" alt="">
</div>
<div class="other-post-detail w-[90%]">
<div class="other-post-head flex justify-between items-center">
<div class="other-post-profile-detail flex items-start flex-col">
<div class="other-profile-name font-bold flex gap-2">
<div class="name">sujay anand</div>
<div class="other-profile-star"><span class="material-symbols-outlined text-blue-800">brightness_4</span></div>
</div>
<div class="id-and-upload-date flex gap-1">
<div class="other-profile-id text-slate-700">@imsujayanand</div>
<div class="dot text-slate-600">.</div>
<div class="other-post-upload-date text-slate-600">Jul 9</div>
</div>
</div>
<div class="other-more"><span class="material-symbols-outlined ">more_horiz</span></div>
</div>
<div class="other-post-info">
<div class="other-post-description text-wrap">🚨 The Biggest Statpadder of T20s ( A complete
thread 🧵)</div>
<div class="other-post-pic"><img class="rounded-xl my-3" src="./src/img/post1.jpg"
alt="Not showing"></div>
</div>
<div class="other-post-bottom text-slate-700 flex justify-between items-center flex-wrap">
<div class="other-post-comments flex gap-1 hover:text-white hover:cursor-pointer">
<div class="comments-icon"><span class="material-symbols-outlined">chat_bubble</span></div>
<div class="comment-number">72k</div>
</div>
<div class="other-post-shares flex gap-1 hover:text-white hover:cursor-pointer">
<div class="share-icon"><span class="material-symbols-outlined">share</span></div>
<div class="share-number">50k</div>
</div>
<div class="other-post-likes flex gap-1 hover:text-white hover:cursor-pointer">
<div class="like-icon"><span class="material-symbols-outlined">favorite</span></div>
<div class="like-number">100k</div>
</div>
<div class="other-post-status flex gap-1 hover:text-white hover:cursor-pointer">
<div class="status-icon"><span class="material-symbols-outlined">bar_chart</span></div>
<div class="status-number">150k</div>
</div>
<div class="other-post-sav-download flex gap-1 ">
<div class="save-icon"><span
class="material-symbols-outlined hover:text-white hover:cursor-pointer">bookmark</span>
</div>
<div class="download-iconr"><span
class="material-symbols-outlined hover:text-white hover:cursor-pointer">download</span>
</div>
</div>
</div>
</div>
</div>
<hr>
<div class="other-post flex m-5 gap-5 ">
<div class="other-profile-pic w-[10%]"><img class="w-10 h-10 rounded-full"
src="https://media.sproutsocial.com/uploads/2022/06/profile-picture.jpeg" alt="">
</div>
<div class="other-post-detail w-[90%]">
<div class="other-post-head flex justify-between items-center">
<div class="other-post-profile-detail flex items-start flex-col">
<div class="other-profile-name font-bold flex gap-2">
<div class="name">sujay anand</div>
<div class="other-profile-star"><span class="material-symbols-outlined text-blue-800">brightness_4</span></div>
</div>
<div class="id-and-upload-date flex gap-1">
<div class="other-profile-id text-slate-700">@imsujayanand</div>
<div class="dot text-slate-600">.</div>
<div class="other-post-upload-date text-slate-600">Jul 9</div>
</div>
</div>
<div class="other-more"><span class="material-symbols-outlined ">more_horiz</span></div>
</div>
<div class="other-post-info">
<div class="other-post-description text-wrap">🚨 The Biggest Statpadder of T20s ( A complete
thread 🧵)</div>
<div class="other-post-pic"><img class="rounded-xl my-3" src="./src/img/post1.jpg"
alt="Not showing"></div>
</div>
<div class="other-post-bottom text-slate-700 flex justify-between items-center flex-wrap">
<div class="other-post-comments flex gap-1 hover:text-white hover:cursor-pointer">
<div class="comments-icon"><span class="material-symbols-outlined">chat_bubble</span></div>
<div class="comment-number">72k</div>
</div>
<div class="other-post-shares flex gap-1 hover:text-white hover:cursor-pointer">
<div class="share-icon"><span class="material-symbols-outlined">share</span></div>
<div class="share-number">50k</div>
</div>
<div class="other-post-likes flex gap-1 hover:text-white hover:cursor-pointer">
<div class="like-icon"><span class="material-symbols-outlined">favorite</span></div>
<div class="like-number">100k</div>
</div>
<div class="other-post-status flex gap-1 hover:text-white hover:cursor-pointer">
<div class="status-icon"><span class="material-symbols-outlined">bar_chart</span></div>
<div class="status-number">150k</div>
</div>
<div class="other-post-sav-download flex gap-1 ">
<div class="save-icon"><span
class="material-symbols-outlined hover:text-white hover:cursor-pointer">bookmark</span>
</div>
<div class="download-iconr"><span
class="material-symbols-outlined hover:text-white hover:cursor-pointer">download</span>
</div>
</div>
</div>
</div>
</div>
<hr>
</div>
<div class="third md:w-[25%] w-[30%] max-h-[100vh] sticky left-0 top-0 md:block hidden overflow-scroll">
<div class="search w-[100%] p-2 flex w-full bg-black sticky top-0">
<button
class="border rounded-l-full bg-slate-800 w-10 flex justify-center items-center p-2 border-none">
<span class="material-symbols-outlined ">
search
</span>
</button>
<input placeholder="Search.." type="search" name="search" id="search"
class="bg-slate-800 w-[86%] rounded-r-full pl-2">
</div>
<div class="subscribe border border-white rounded-xl p-3 mx-5">
<div class="subscribe-title text-xl font-bold mb-2">Subscribe to Premium</div>
<div class="subscriber-des font-thin text-base">Subscribe to unlock new features and if eligible,
receive a share of ads revenue.</div>
<button
class="subscriber-btn bg-blue-700 rounded-full px-3 py-1 mt-2 hover:bg-blue-600 p-1">Subscribe</button>
</div>
<div class="what-happening border border-white mx-5 my-2 rounded-xl ">
<div class="title text-xl font-bold p-3">What's Happening</div>
<div class="trending-topics flex justify-between items-center pr-2 hover:bg-slate-700">
<div class="trending-left px-3 py-2">
<div class="trending-title text-gray-600 text-sm">Trending in India</div>
<div class="trending-hashtag">#Triptiidimri</div>
<div class="total-post text-gray-600 text-sm">7,733 posts</div>
</div>
<div class="trending-right">
<span class="material-symbols-outlined ">
more_horiz
</span>
</div>
</div>
<div class="trending-topics flex justify-between items-center pr-2 hover:bg-slate-700">
<div class="trending-left px-3 py-2">
<div class="trending-title text-gray-600 text-sm">Trending in India</div>
<div class="trending-hashtag">#Triptiidimri</div>
<div class="total-post text-gray-600 text-sm">7,733 posts</div>
</div>
<div class="trending-right">
<span class="material-symbols-outlined ">
more_horiz
</span>
</div>
</div>
<div class="trending-topics flex justify-between items-center pr-2 hover:bg-slate-700">
<div class="trending-left px-3 py-2">
<div class="trending-title text-gray-600 text-sm">Trending in India</div>
<div class="trending-hashtag">#Triptiidimri</div>
<div class="total-post text-gray-600 text-sm">7,733 posts</div>
</div>
<div class="trending-right">
<span class="material-symbols-outlined ">
more_horiz
</span>
</div>
</div>
<div class="trending-topics flex justify-between items-center pr-2 hover:bg-slate-700">
<div class="trending-left px-3 py-2">
<div class="trending-title text-gray-600 text-sm">Trending in India</div>
<div class="trending-hashtag">#Triptiidimri</div>
<div class="total-post text-gray-600 text-sm">7,733 posts</div>
</div>
<div class="trending-right">
<span class="material-symbols-outlined ">
more_horiz
</span>
</div>
</div>
<div class="see-more-btn px-3 text-blue-500 pr-2 hover:bg-slate-700 p-3 rounded-b-xl">Show more..</div>
</div>
<div class="footer text-gray-500 text-xs m-5 ">
<span class="hover:underline m-1 hover:cursor-pointer">Terms of Service</span>
<span class="hover:underline m-1 hover:cursor-pointer">Privacy Policy</span>
<span class="hover:underline m-1 hover:cursor-pointer">Cookie Policy</span>
<span class="hover:underline m-1 hover:cursor-pointer">Accessibility</span>
<span class="hover:underline m-1 hover:cursor-pointer">Ads info</span>
<span class="hover:underline m-1 hover:cursor-pointer">More...</span>
<span class="hover:underline m-1 hover:cursor-pointer">© 2024 X Corp.</span>
</div>
</div>
</div>
</body>
</html>