-
Notifications
You must be signed in to change notification settings - Fork 0
/
mainWindow.html
executable file
·48 lines (38 loc) · 1.5 KB
/
mainWindow.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Magento 2 theme generation</title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
</head>
<body style="-webkit-app-region: drag">
<div class="selection__overlay">
<p>Please choose your Parent theme</p>
<span id="sel_blank__theme">Blank Theme</span>
<span id="sel_luma__theme">Luma Theme</span>
</div>
<h1 class="app_title"><img src="img/logo.png">
<b>BRUSH</b>
<span>Theme Styling for Magento 2</span>
</h1>
<div class="header_button--cont">
<div class="upload_button--cont">
<button class="upload__btn btn">Upload Design</button>
<input type="file" id="upload__file" />
</div>
<button id="create_file" class="export__file btn" >Download Theme File</button>
</div>
<!-- Left Container -->
<div id="right_cont">
</div>
<!-- Image container -->
<div class="upload_container _example-GETIMAGECOLORS_full-container">
<img id="uploaded__image" src="#" alt="your image" />
<div class="chmln-demo__colors"></div>
</div>
<div class="copy_value" id="rect"></div>
<script>window.$ = window.jQuery = require('./vendor/jquery-3.3.1.min.js');</script>
<script src="./core/core.js"></script>
<script src="./vendor/jscolor.js"></script>
<script src="./vendor/jquery.chameleon.js"></script>
</body>
</html>