-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
351 lines (351 loc) · 13.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<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=Karla:wght@400;600&family=Rubik:wght@400;600&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css"
integrity="sha512-1ycn6IcaQQ40/MKBW2W4Rhis/DbILU74C1vSrLJxCq57o941Ym01SwNsOMqvEBFlcgUa6xLiPY/NS5R+E6ztJQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
/>
<title>Project Management Dashboard UI</title>
</head>
<body
style="visibility: hidden"
onload="document.body.style.visibility='visible'"
>
<header class="header">
<section class="header__search-bar-layer">
<article class="search-bar-container">
<input type="text" class="search-bar" placeholder="Search" />
<button class="search-btn icon-btn btn">
<i class="fa fa-search"></i>
</button>
</article>
<article class="header__btns">
<button class="header__btn msg-open-btn btn">
<i class="far fa-comment-alt"></i>
</button>
<button class="header__btn day-night-btn btn">
<i class="far fa-moon"></i>
</button>
<button class="header__btn btn">
<i class="fa fa-plus-circle"></i>
</button>
<button class="header__btn btn">
<i class="far fa-bell"></i>
</button>
</article>
<article class="hero-container">
<img
src="./assets/images/profile.png"
alt="profile image"
class="hero-img"
/>
<h3 class="hero-title">Prince</h3>
</article>
</section>
<section class="header__nav-links-layer">
<article class="header__nav-links flex-space-btw">
<a href="#" class="nav-link flex-center nav-link-active">
<i class="fa fa-home"></i>
</a>
<a href="#" class="nav-link flex-center">
<i class="far fa-clock"></i>
</a>
<a href="#" class="nav-link flex-center">
<i class="far fa-calendar-alt"></i>
</a>
<a href="#" class="nav-link flex-center">
<i class="fa fa-cog"></i>
</a>
</article>
<article class="header__btns">
<button class="header__btn msg-open-btn btn">
<i class="far fa-comment-alt"></i>
</button>
<button class="header__btn day-night-btn btn">
<i class="far fa-moon"></i>
</button>
<button class="header__btn btn">
<i class="fa fa-plus-circle"></i>
</button>
<button class="header__btn btn">
<i class="far fa-bell"></i>
</button>
</article>
</section>
<section class="header__btn-layer flex-space-btw">
<article class="hero-container">
<img
src="./assets/images/profile.png"
alt="profile image"
class="hero-img"
/>
<h3 class="hero-title">Prince</h3>
</article>
<article class="header__btns">
<button class="header__btn msg-open-btn btn">
<i class="far fa-comment-alt"></i>
</button>
<button class="header__btn day-night-btn btn">
<i class="far fa-moon"></i>
</button>
<button class="header__btn btn">
<i class="fa fa-plus-circle"></i>
</button>
<button class="header__btn btn">
<i class="far fa-bell"></i>
</button>
</article>
</section>
</header>
<main class="main">
<article class="main__nav-links">
<a href="#" class="nav-link flex-center nav-link-active">
<i class="fa fa-home"></i>
</a>
<a href="#" class="nav-link flex-center">
<i class="far fa-clock"></i>
</a>
<a href="#" class="nav-link flex-center">
<i class="far fa-calendar-alt"></i>
</a>
<a href="#" class="nav-link flex-center">
<i class="fa fa-cog"></i>
</a>
</article>
<section class="projects-section">
<header class="projects-header">
<article class="projects-header__first-layer">
<h3 class="projects-title">Projects</h3>
<h3 class="date">December, 12</h3>
</article>
<article class="projects-header__second-layer">
<ul class="projects-info-list">
<li>
<span>45</span>
<span>in progress</span>
</li>
<li>
<span>24</span>
<span>upcoming</span>
</li>
<li>
<span>62</span>
<span>total projects</span>
</li>
</ul>
<div class="projects-show-btn-container">
<button class="btn projects-show-btn slides-btn nav-link">
<i class="fa fa-th-list"></i>
</button>
<button
class="btn projects-show-btn box-btn nav-link nav-link-active"
>
<i class="fa fa-th-large"></i>
</button>
</div>
</article>
</header>
<section class="projects">
<article class="project project-web">
<p class="project-date">December 10, 2020</p>
<button class="btn project-btn">
<i class="fa fa-ellipsis-h"></i>
</button>
<p class="project-title">Web Designing</p>
<p class="project-type">Prototyping</p>
<section class="project-progress">
<p class="progress-title">Progress</p>
<div class="progress-bar"></div>
<p class="progress-percentage">60%</p>
</section>
<div class="project-underline"></div>
<div class="project-add-btns">
<button class="btn project-add-btn">
<i class="fa fa-plus-circle"></i>
</button>
</div>
<p class="project-time-left">2 days left</p>
</article>
<article class="project project-testing">
<p class="project-date">January 2, 2021</p>
<button class="btn project-btn">
<i class="fa fa-ellipsis-h"></i>
</button>
<p class="project-title">Testing</p>
<p class="project-type">Prototyping</p>
<section class="project-progress">
<p class="progress-title">Progress</p>
<div class="progress-bar progress-testing"></div>
<p class="progress-percentage">50%</p>
</section>
<div class="project-underline"></div>
<div class="project-add-btns">
<button class="btn project-add-btn">
<i class="fa fa-plus-circle"></i>
</button>
</div>
<p class="project-time-left">20 days left</p>
</article>
<article class="project project-svg">
<p class="project-date">June 20, 2021</p>
<button class="btn project-btn">
<i class="fa fa-ellipsis-h"></i>
</button>
<p class="project-title">Svg Animations</p>
<p class="project-type">Prototyping</p>
<section class="project-progress">
<p class="progress-title">Progress</p>
<div class="progress-bar progress-svg"></div>
<p class="progress-percentage">80%</p>
</section>
<div class="project-underline"></div>
<div class="project-add-btns">
<button class="btn project-add-btn">
<i class="fa fa-plus-circle"></i>
</button>
</div>
<p class="project-time-left">2 days left</p>
</article>
<article class="project project-ui">
<p class="project-date">March 1, 2021</p>
<button class="btn project-btn">
<i class="fa fa-ellipsis-h"></i>
</button>
<p class="project-title">UI Development</p>
<p class="project-type">Prototyping</p>
<section class="project-progress">
<p class="progress-title">Progress</p>
<div class="progress-bar progress-ui"></div>
<p class="progress-percentage">20%</p>
</section>
<div class="project-underline"></div>
<div class="project-add-btns">
<button class="btn project-add-btn">
<i class="fa fa-plus-circle"></i>
</button>
</div>
<p class="project-time-left">5 days left</p>
</article>
<article class="project project-data-analysis">
<p class="project-date">September 25, 2020</p>
<button class="btn project-btn">
<i class="fa fa-ellipsis-h"></i>
</button>
<p class="project-title">Data Analysis</p>
<p class="project-type">Prototyping</p>
<section class="project-progress">
<p class="progress-title">Progress</p>
<div class="progress-bar"></div>
<p class="progress-percentage">60%</p>
</section>
<div class="project-underline"></div>
<div class="project-add-btns">
<button class="btn project-add-btn">
<i class="fa fa-plus-circle"></i>
</button>
</div>
<p class="project-time-left">10 days left</p>
</article>
<article class="project project-react">
<p class="project-date">April 14, 2021</p>
<button class="btn project-btn">
<i class="fa fa-ellipsis-h"></i>
</button>
<p class="project-title">React App</p>
<p class="project-type">Prototyping</p>
<section class="project-progress">
<p class="progress-title">Progress</p>
<div class="progress-bar progress-react"></div>
<p class="progress-percentage">40%</p>
</section>
<div class="project-underline"></div>
<div class="project-add-btns">
<button class="btn project-add-btn">
<i class="fa fa-plus-circle"></i>
</button>
</div>
<p class="project-time-left">28 days left</p>
</article>
</section>
</section>
<section class="msg-section">
<header class="msg-section-header flex-space-btw">
<h3 class="msg-title">Client Messages</h3>
<button class="btn msg-close-btn">
<i class="far fa-times-circle"></i>
</button>
</header>
<div class="msg-underline"></div>
<article class="msg">
<header class="msg-header">
<img src="./assets/images/ethen.jfif" alt="" class="hero-img" />
<h4 class="hero-title">Ethen</h4>
<button class="msg-star-btn btn">
<i class="far fa-star"></i>
</button>
</header>
<p class="text-msg">
I got your first assignment. It was quite good. 🥳 We can continue
with the next assignment.
</p>
<p class="msg-time">Dec, 12</p>
</article>
<div class="msg-underline"></div>
<article class="msg">
<header class="msg-header">
<img src="./assets/images/arya.jfif" alt="" class="hero-img" />
<h4 class="hero-title">Arya</h4>
<button class="msg-star-btn btn">
<i class="far fa-star"></i>
</button>
</header>
<p class="text-msg">
Hey, can tell me about progress of project? I'm waiting for your
response.
</p>
<p class="msg-time">january, 2</p>
</article>
<div class="msg-underline"></div>
<article class="msg">
<header class="msg-header">
<img src="./assets/images/daario.jfif" alt="" class="hero-img" />
<h4 class="hero-title">Darrio</h4>
<button class="msg-star-btn btn">
<i class="far fa-star"></i>
</button>
</header>
<p class="text-msg">
Awesome! 🤩 I like it. We can schedule a meeting for the next one.
</p>
<p class="msg-time">June, 2</p>
</article>
<div class="msg-underline"></div>
<article class="msg">
<header class="msg-header">
<img src="./assets/images/khaleesi.jfif" alt="" class="hero-img" />
<h4 class="hero-title">Khaleesi</h4>
<button class="msg-star-btn btn">
<i class="far fa-star"></i>
</button>
</header>
<p class="text-msg">
I am really impressed! Can't wait to see the final result.
</p>
<p class="msg-time">Nov, 28</p>
</article>
</section>
</main>
<script type="module" src="./main.js"></script>
</body>
</html>