forked from commaai/commacoloring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (46 loc) · 1.64 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
<!DOCTYPE html>
<html>
<head>
<title>Adult Coloring Book</title>
<link href="css/main.css" rel="stylesheet" type="text/css">
<script src="js/jquery.min.js"></script>
<script src="js/js.cookie.js"></script>
<script>
function handleResize() {
document.body.style.transform = "scale("+(window.innerWidth/1450.0)+")";
}
window.onresize = handleResize;
window.onload = handleResize;
</script>
</head>
<body>
<div class="edit-main-container">
<!-- left hand panel -->
<div class="edit-image-display">
<div id="lhp"></div>
<div class="toolchest">
<img class="tool" id="tool-wand" src="img/wand.png" />
<img class="tool" id="tool-brush" src="img/brush.png" />
<img class="tool" id="tool-polygon" src="img/polygon.png" />
<button class="suggest-button">suggest</button>
</div>
<div class="img-submit-box"><button class="img-submit">submit</button></div>
<div class="edit-image-instructions">color the picture appropriately, click submit, earn a <span style="color: goldenrod">comma point</span>*</div>
<div class="edit-image-disclaimer">*<span style="color: goldenrod">comma points</span> redeemed to google account. you will get access soon</div>
<div class="sign-in-box">
<button class="sign-in">sign in with google</button>
</div>
<!--<div class="edit-image-disclaimer">protip: check out the "pixel size" +/-</div>-->
<div class="edit-image-count"></div>
</div>
<!-- right hand panel -->
<div class="edit-image-display" id="rhp">
</div>
</div>
</body>
<head>
<script data-main="js/main.js" src="js/require.js"></script>
<script src="js/auth.js"></script>
<script src="https://apis.google.com/js/api.js?onload=handleClientLoad"></script>
</head>
</html>