-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsummary.html
More file actions
102 lines (99 loc) · 5.14 KB
/
Copy pathsummary.html
File metadata and controls
102 lines (99 loc) · 5.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="./img/logo/favicon.png" type="image/x-icon">
<title>Join - Summary</title>
<link rel="stylesheet" href="./css/font.css">
<link rel="stylesheet" href="./css/main.css">
<link rel="stylesheet" href="./css/summary.css">
<link rel="stylesheet" href="./css/media_queries.css">
</head>
<body onload="initSummarySite()" class="custom-scrollbar">
<div onclick="closeHeaderMenu()" w3-include-html="./templates/sidebar.html"></div>
<div onclick="closeHeaderMenu()" class="header-main-container">
<header w3-include-html="./templates/header.html"></header>
<main>
<section class="summary-headline-container">
<h1 class="summary-headline">Join 41</h1>
<div>
<div class="vector-seperator"></div>
<span class="summary-subheadline">Key Metrics at a Glace</span>
</div>
</section>
<section class="main-info-container">
<section class="summary-main-container">
<div class="summary-taskinfo">
<a id="toTheRight" class="task-to-do-done hover-to-the-right active-to-the-right"
href="./board.html">
<div class="upper-img-bg">
<img src="./img/icons/summary/pencil.svg" alt="">
</div>
<div>
<div id="toDoAmount" class="task-amount">1</div>
<span class="upper-task-text">To-Do</span>
</div>
</a>
<a id="toTheLeft" class="task-to-do-done hover-to-the-left active-to-the-left"
href="./board.html">
<div class="upper-img-bg">
<img src="./img/icons/summary/hook.svg" alt="">
</div>
<div>
<div id="doneAmount" class="task-amount">1</div>
<span class="upper-task-text">Done</span>
</div>
</a>
</div>
<div>
<a id="toTheBottom" class="task-important hover-to-the-bottom-right" href="./board.html">
<div class="important-task-amount">
<div class="important-img-bg">
<img src="./img/icons/summary/cappa.svg" alt="">
</div>
<div>
<div id="urgentAmount" class="task-amount">1</div>
<span class="important-text">Urgent</span>
</div>
</div>
<div class="important-seperator"></div>
<div class="important-task-date">
<span id="nextDeadline" class="important-text-bold">No active Deadline</span>
<span class="important-text">Upcoming Deadline</span>
</div>
</a>
</div>
<div class="task-counter-container">
<a id="toTheRightSmall" class="task-counter hover-to-the-right-small" href="./board.html">
<div id="taskAmount" class="task-amount">5</div>
<span class="upper-task-text tib-width">Tasks in Board</span>
</a>
<a id="toTheMiddel" class="task-counter hover-to-the-middel" href="./board.html">
<div id="inProgressAmount" class="task-amount">2</div>
<span class="upper-task-text">Tasks in Progress</span>
</a>
<a id="toTheLeftSmall" class="task-counter hover-to-the-left-small" href="./board.html">
<div id="feedbackAmount" class="task-amount">2</div>
<span class="upper-task-text">Awaiting Feedback</span>
</a>
</div>
</section>
<section class="welcome-container">
<h3 class="welcome-message">Good morning,</h3>
<h2 id="userName" class="username"></h2>
</section>
<section id="welcomeContainerMobile" class="welcome-container-mobile">
<h3 id="mobileUserWelcomeMsg" class="welcome-message-mobile">
Good morning,<br>
<span></span>
</h3>
</section>
</section>
</main>
</div>
<script src="./js/remotestorage.js"></script>
<script src="./js/main.js"></script>
<script src="./js/summary.js"></script>
</body>
</html>