generated from chingu-voyages/voyage-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
72 lines (59 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Color Palette Picker</title>
<!--JQUERY LIBRARY -->
<script defer src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!-- FONTAWSOME -->
<script defer src="https://kit.fontawesome.com/df21ef76d6.js" crossorigin="anonymous"></script>
<!-- BOOTSTRAP CSS -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous" />
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"></script>
<!-- LOCAL SOURCE -->
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="module" src="/main.js"></script>
</head>
<body>
<!-- Color Wheel container -->
<div class="container-fluid text-center" id="colorWheel">
<h5>Color Wheel</h5>
<div id="colorWheel-container" class="container-fluid hsl-container"></div>
<div id="sample-container" class="sample-container">
<p class="text">
<span id="hsl-values" style="display: none">Hue: <b>0</b>, Saturation: <b>100</b>%, Lightness:
<b>50</b>%</span>
</p>
<div id="sample" class="sample"></div>
</div>
</div>
<!-- Colors Picked container -->
<div class="container-fluid text-center" id="colorArray">
<h5>Color Picked Array</h5>
<div class="d-flex align-items-start justify-content-center" id="color-array">
</div>
</div>
<!-- Recommendations container -->
<div class="container-fluid bg-body-tertiary" id="colorRecommendation">
<h5>Color Recommendations</h5>
<div class="card mb-3 text-start" id="cardList">
</div>
</div>
<!-- Buttons containers -->
<div class="container-fluid text-center fixed-bottom" id="buttonsMenu">
<nav class="navbar bg-body-tertiary justify-content-center">
<span class="navbar-brand mb-0 h1">GroqAI</span>
<span class="navbar-brand mb-0 h1">
<form class="container-fluid">
<button class="btn btn-success" type="button" id="recommendButton">Recommend</button>
<button class="btn btn-secondary" type="button" id="cancelButton">Cancel</button>
</form>
</span>
</nav>
</div>
</body>
</html>