-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (108 loc) · 5.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./public/assets/images/favicon-32x32.png">
<title>Frontend Mentor | Notifications page</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./public/css/styles.css">
</head>
<body class="bg-light-grayish-blue-100">
<main class="d-flex justify-content-center align-items-center">
<section class="notification-area bg-white my-md-5 rounded rounded-3 p-3 p-md-4 shadow shadow-sm" aria-labelledby="notification-area">
<header class="d-flex justify-content-between">
<h1 id="notification-area" class="primary-header">Notifications <span class="badge bg-Very-dark-blue">3</span></h1>
<p class="read">Mark all as read</p>
</header>
<div class="notification-container">
<div class="notification d-flex align-items-center gap-3 my-2 p-3 rounded active">
<img width="45" height="45" src="./public/assets/images/avatar-mark-webber.webp" alt="user profile">
<div class="details">
<p class="description position-relative">
<span class="user-name"> Mark Webber</span>
reacted to your recent post
<span class="post">My first tournament today!</span>
</p>
<p class="timing">1m ago</p>
</div>
</div>
<div class="notification d-flex align-items-center gap-3 my-2 p-3 rounded active">
<img width="45" height="45" src="./public/assets/images/avatar-angela-gray.webp" alt="user profile">
<div class="details">
<p class="description position-relative">
<span class="user-name"> Angela Gray</span>
followed you
</p>
<p class="timing"> 5m ago</p>
</div>
</div>
<div class="notification d-flex align-items-center gap-3 my-2 p-3 rounded active">
<img width="45" height="45" src="./public/assets/images/avatar-jacob-thompson.webp" alt="user profile">
<div class="details">
<p class="description position-relative">
<span class="user-name"> Jacob Thompson</span>
has joined your group
<span class="group">Chess Club</span>
</p>
<p class="timing">1 day ago</p>
</div>
</div>
<div class="notification d-flex gap-3 my-2 p-3 rounded">
<img width="45" height="45" src="./public/assets/images/avatar-rizky-hasanuddin.webp" alt="user profile">
<div class="details">
<p class="description">
<span class="user-name"> Rizky Hasanuddin</span>
sent you a private message
</p>
<p class="timing">5 days ago</p>
<div class="message border rounded p-3 p-md-4 mt-3 me-0">
<p>
Hello, thanks for setting up the Chess Club. I've been a member for a few weeks now and
I'm already having lots of fun and improving my game.
</p>
</div>
</div>
</div>
<div class="notification d-flex align-items-center gap-3 my-2 p-3 rounded">
<img width="45" height="45" src="./public/assets/images/avatar-kimberly-smith.webp" alt="user profile">
<div class="details">
<p class="description">
<span class="user-name"> Kimberly Smith</span>
commented on your picture
</p>
<p class="timing">1 week ago</p>
</div>
<img class="ms-auto post-image" width="45" height="45" src="./public/assets/images/image-chess.webp" alt="woman playing chase">
</div>
<div class="notification d-flex align-items-center gap-3 my-2 p-3 rounded">
<img width="45" height="45" src="./public/assets/images/avatar-nathan-peterson.webp" alt="user profile">
<div class="details">
<p class="description">
<span class="user-name"> Nathan Peterson</span>
reacted to your recent post
<span class="post">5 end-game strategies to increase your win rate</span>
</p>
<p class="timing">2 weeks ago</p>
</div>
</div>
<div class="notification d-flex align-items-center gap-3 my-2 p-3 rounded">
<img width="45" height="45" src="./public/assets/images/avatar-anna-kim.webp" alt="user profile">
<div class="details">
<p class="description">
<span class="user-name"> Anna Kim</span>
left the group
<span class="group">Chess Club</span>
</p>
<p class="timing">2 weeks ago</p>
</div>
</div>
</div>
</section>
</main>
<script src="./public/js/main.js"></script>
</body>
</html>