-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
51 lines (34 loc) · 1.13 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
<!DOCTYPE html>
<html lang="de" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="utf-8" />
<title>Harmonic Colors</title>
<script src="js/plugins.js" type="text/javascript"></script>
<script src="js/lib.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="css/jquery.minicolors.css" media="all" />
<link rel="stylesheet" type="text/css" href="css/style.css" media="all" />
</head>
<body>
<div class="wrapper">
<div class="menu">
<a href="#" class="add-field">Add field</a>
<a href="#" class="harmonize">Harmonize!</a>
</div>
<div class="partial">
<div class="color-item added">
Old color
<div class="color-preview color-preview-old"></div>
New color
<div class="color-preview color-preview-new" data-changed="no"></div>
<label>Old hex</label>
<input type="text" name="color" class="colorpicker" value="ffffff" />
<label>New hex</label>
<input type="text" name="color" class="hex-new" value="ffffff" />
<a href="#" class="delete-field">Remove</a>
</div>
</div>
<div class="app"></div>
<div id="debug"></div>
</div>
</body>
</html>