-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
183 lines (159 loc) · 5.91 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
<!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="./assets/images/favicon-32x32.png">
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@500;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="main.css">
<title>Frontend Mentor | Notifications page</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution {
font-size: 11px;
text-align: center;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
<body>
<div class="wrapper">
<div class="chat-container">
<div class="chat-bar">
<p>Notifications
<span class="notif-unread"></span>
</p>
<span id="mark-as-read">Mark all as read</span>
</div>
<div class="notif-component unread">
<img src="./assets/images/avatar-mark-webber.webp" alt="Mark-Webber" height="50px" width="50px">
<div class="user-details">
<div>
<p>
<span class="user-name">Mark Webber</span>
reacted to your recent post
<span class="message-link-reference">My first tournament today!</span>
<span class="message-status"></span>
</p>
<p class="message-creation-time">1m ago</p>
</div>
</div>
</div>
<div class="notif-component unread">
<img src="./assets/images/avatar-angela-gray.webp" alt="Angela-Gray" height="50px" width="50px">
<div class="user-details">
<div>
<p>
<span class="user-name">Angela Gray</span>
followed you
<span class="message-status"></span>
</p>
<p class="message-creation-time">5m ago</p>
</div>
</div>
</div>
<div class="notif-component unread">
<img src="./assets/images/avatar-jacob-thompson.webp" alt="Jacob-Thompson" height="50px" width="50px">
<div class="user-details">
<div>
<p>
<span class="user-name">Jacob Thompson</span>
has joined your group
<span class="message-link-reference">Chess Club</span>
<span class="message-status"></span>
</p>
<p class="message-creation-time">1 day ago</p>
</div>
</div>
</div>
<div class="notif-component">
<img src="./assets/images/avatar-rizky-hasanuddin.webp" alt="Rizky-Hasanuddin" height="50px" width="50px">
<div class="user-details">
<div>
<p>
<span class="user-name">Rizky Hasanuddin</span>
sent you a private message
<span class="message-status"></span>
</p>
<p class="message-creation-time">5 days ago</p>
<p class="private-message">
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="notif-component">
<img src="./assets/images/avatar-kimberly-smith.webp" alt="Kimberly-Smith" height="50px" width="50px">
<div class="user-details">
<div>
<p>
<span class="user-name">Kimberly Smith</span>
commented on your picture
<span class="message-status"></span>
</p>
<p class="message-creation-time">1 week ago</p>
</div>
<div class="insert-picture">
<img src="./assets/images/image-chess.webp" alt="chess-picture" height="50px" width="50px">
</div>
</div>
</div>
<div class="notif-component">
<img src="./assets/images/avatar-nathan-peterson.webp" alt="Nathan-Peterson" height="50px" width="50px">
<div class="user-details">
<div>
<p>
<span class="user-name">Nathan Peterson</span>
reacted to your recent post
<span class="message-link-reference">5 end-game strategies to increase your win rate</span>
<span class="message-status"></span>
</p>
<p class="message-creation-time">2 weeks ago</p>
</div>
</div>
</div>
<div class="notif-component">
<img src="./assets/images/avatar-anna-kim.webp" alt="Anna-Kim" height="50px" width="50px">
<div class="user-details">
<div>
<p>
<span class="user-name">Anna Kim</span>
left the group
<span class="message-link-reference">Chess Club</span>
<span class="message-status"></span>
</p>
<p class="message-creation-time">2 weeks ago</p>
</div>
</div>
</div>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://adic81.github.io/portfolio">Adrian Contiu</a>.
</div>
</div>
<!-- Notifications 3
Mark all as read
Mark Webber reacted to your recent post My first tournament today!
1m ago
Angela Gray followed you
5m ago
Jacob Thompson has joined your group Chess Club
1 day ago
Rizky Hasanuddin sent you a private message
5 days ago
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.
Kimberly Smith commented on your picture
1 week ago
Nathan Peterson reacted to your recent post 5 end-game strategies to increase your win rate
2 weeks ago
Anna Kim left the group Chess Club
2 weeks ago -->
<script src="main.js"></script>
</body>
</html>