-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (37 loc) · 2.03 KB
/
index.html
File metadata and controls
53 lines (37 loc) · 2.03 KB
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
<!DOCTYPE HTML>
<html>
<head>
<!-- ************* Meta ************* -->
<title>Designtools Hackday – Visual Creator</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<!-- ************* OpenGraph ************-->
<meta property="og:site_name" content="Designtools Hackday Visual Creator"/>
<meta property="og:title" content="Designtools Hackday – Visual Creator"/>
<meta property="og:url" content="http://designtoolshackday.com/visual-creator/"/>
<meta property="og:description" content="Exploring the future of designtools – two days of hacking away on Extensions for Sketch App. Fri, April 8 - Sat, April 9th 2016 at precious design studio in Hamburg."/>
<meta property="og:image" content="http://designtoolshackday.com/visual-creator/dist/imgs/designtoolshackday-visualcreator.png">
<!-- ************* Styles ************* -->
<link type="text/css" rel="stylesheet" href="http://fast.fonts.net/cssapi/a88d4eb4-2542-498e-a121-cef51e8d2f37.css"/>
<link rel="stylesheet" type="text/css" href="dist/styles/styles.min.css">
<!-- ************* Scripts ************-->
<script type="text/javascript" src="dist/scripts/main.min.js"></script>
</head>
<body>
<svg id="svg"></svg>
<div class="content">
<div class="ui">
<div class="title">
<h1><a href="http://designtoolshackday.com"><strong>Designtools Hackday</strong><br>Sketch Extensions</a></h1>
</div>
<label>Hue: <span class="hue-value">10</span></label>
<input id="hue" type="range" name="hue" value="150" step="1" min="0" max="360">
<label>Saturation <span class="sat-value">10</span></label>
<input id="sat" type="range" name="sat" value="50" step="1" min="40" max="100">
<label>Lightness <span class="light-value">10</span></label>
<input id="light" type="range" name="light" value="50" step="1" min="30" max="80">
</div>
</div>
<div class="hide"><div class="button">Hide Sliders</div></div>
</body>
</html>