-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (62 loc) · 2.52 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
<!doctype html>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<title>Resourcing Application</title>
<link href="main.css" rel="stylesheet">
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
</head>
<body>
<div class="header"></div>
<div class="projectAreaSeparator separator">
<div class="newProject button">+</div>
<p>Projects</p>
</div>
<div class="interiorsProjectAreaSeparator separator">
<div class="newInteriorsProject button">+</div>
<p>Interiors Projects</p>
</div>
<div class="employeeAreaSeparator separator">
<div class="newEmployee button">+</div>
<div class="sort button">ABC</div>
<p>Employees</p>
</div>
<div class="interiorsEmployeeAreaSeparator separator">
<div class="newInteriorsEmployee button">+</div>
<p>Interiors Employees</p>
</div>
<div class="row" style="font-weight:600;"><p>Construction</p></div>
<div class="minor emptyRow row"><p>Empty Row</p></div>
<div class="minor workloadRow row"><p>Workload Row</p></div>
<div class="minor employeesRow row"><p>Employees Row</p></div>
<div class="summationRow row"><p>Employees Spare Row</p></div>
<div class="row" style="font-weight:600;"><p>Interiors</p></div>
<div class="minor emptyRowI row"><p>Empty Row</p></div>
<div class="minor workloadRowI row"><p>Workload Row</p></div>
<div class="minor employeesRowI row"><p>Employees Row</p></div>
<div class="summationRowI row"><p>Employees Spare Row</p></div>
<div class="summationRowT row"><p>Total Employees Spare</p></div>
<div class="whitespace"></div>
<div class="sheetTabsContainer">
<div class="addSheet">+</div>
</div>
<div class="directorySelect"></div>
<footer>
<script src="./error_handler.js"></script>
<script src="./element_prototypes.js"></script>
<script src="./columns.js"></script>
<script src="./slot.js"></script>
<script src="./project.js"></script>
<script src="./employees.js"></script>
<script src="./drag_handler.js"></script>
<script src="./input_handler.js"></script>
<script src="./context_menu_handler.js"></script>
<script src="./summation_rows.js"></script>
<script src="./sheets.js"></script>
<script src="./save.js"></script>
<script src="./directory_handler.js"></script>
<script src="./load.js"></script>
</footer>
</body>
</html>