-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
134 lines (106 loc) · 4.73 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel='Spreadsheet Icon' type='image/x-icon' href='./favicon.ico'/>
<title>Excel Clone</title>
<script defer src="https://use.fontawesome.com/releases/v5.15.2/js/all.js"
integrity="sha384-vuFJ2JiSdUpXLKGK+tDteQZBqNlMwAjhZ3TvPaDfN9QmbPb7Q8qUpbSNapQev3YF"
crossorigin="anonymous">
</script>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/theme.css">
<link rel="stylesheet" href="css/header.css">
<link rel="stylesheet" href="css/excel.css">
<link rel="stylesheet" href="css/components.css">
<link rel="stylesheet" href="css/responsive.css">
<link rel="stylesheet" href="css/misc.css">
</head>
<body>
<div class="theme-wrapper" id="body-wrapper">
<div class="navbar">
<div class="navbar-top">
<div class="navbar-left">
<div class="navbar-icon">
<img src="assets/icons/common/file-excel-solid.svg" alt="Page Logo">
</div>
<div class="navbar-current-doc-info">
<label>
<input type="text" class="current-doc-name-input" id="current-doc-name-input"
value="Untitled Spreadsheet">
</label>
<span class="current-doc-format">.CSV</span>
</div>
</div>
<div class="navbar-right">
<button class="theme-button" id="save-data-in-csv-format-btn" title="Download As CSV">
<i class="fa fa-file-csv"></i>
<i class="fa fa-file-download"></i>
</button>
<button class="theme-button" id="save-data-btn" title="Download Raw Data">
<i class="fa fa-download"></i>
</button>
<label for="upload-data-btn" class="theme-button" title="Upload Raw Data"><i
class="fa fa-file-upload"></i></label>
<input type="file" id="upload-data-btn" style="display: none" accept=".json">
<button class="theme-button" id="help-btn" style="margin: 0 2px" title="Help">
<i class="fa fa-question"></i>
</button>
</div>
</div>
<div class="navbar-between" style="overflow: hidden">
<div class="navbar-left">
<label>
Background Color:
<input type="color" class="theme-input-field" value="#ffffff" id="background-color-picker">
</label>
<label>
Text Color:
<input type="color" class="theme-input-field" id="text-color-picker">
</label>
<label>
Font Size:
<input class="font-size-input theme-input-field" type="number" max="50" min="10"
id="font-size-input"
value="16" title="Select Font Size">
</label>
<label>
Font:
<select id="font-selector" class="font-selector theme-input-field" title="Select Font"></select>
</label>
<button class="cell-style-change-btn theme-button" id="make-text-bold" title="Make Text Bold">
<i class="fa fa-bold"></i>
</button>
<button class="cell-style-change-btn theme-button" id="make-text-italic" title="Make Text Italic">
<i class="fa fa-italic"></i>
</button>
<button class="cell-style-change-btn theme-button" id="make-text-strikethrough"
title="Make Crossed Text">
<i class="fa fa-strikethrough"></i>
</button>
</div>
<div class="navbar-right">
<button class="theme-button" id="plot-graph-btn" style="text-align: right" title="Create Graph">
<i class="fa fa-chart-line"></i>
</button>
</div>
</div>
<div class="navbar-bottom">
<span id="current-cell" class="current-cell">A1</span>
<span class="fx">fx</span>
<label><input type="text" class="formula-input" id="formula-input" disabled></label>
</div>
</div>
<main>
<div id="excel-table" class="excel-table">
<!-- THIS WILL BE REPLACED BY SHEETS !! -->
</div>
</main>
<footer>
</footer>
</div>
<script src="js/main.js" type="module"></script>
</body>
</html>