-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (37 loc) · 1.21 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
<!DOCTYPE html>
<html>
<head>
<title>Loading | Drawing Station</title>
<script src="script.js" defer></script>
<link rel="preload" href="style.css" as="style" type="text/css">
<link rel="stylesheet" href="style.css">
</head>
<body class="light">
<div id="loading-page">
<noscript style="color: var(--text-color); font-size: 15pt;">
Oops! You need JavaScript enabled in your browser.
</noscript>
</div>
<button id="theme-switcher" class="button">Dark</button> <!--This is what switches the themes-->
<template id="popup-template">
<div class="popup">
</div>
<div class="penInfo-popup">
<span class="block-text">Pen Color:</span>
<input type="color">
<span class="block-text">Pen Size:</span>
<input type="range" max="50" min="1">
<br> <br>
<button>Reset All</button>
</div>
<div class="importExport-popup">
<button class="save-button">Save</button><br>
<button class="load-button" style="margin-top: 0.5em;">Load</button>
</div>
<div class="canvasSettings-popup">
<button class="resize-button">Resize Canvas</button><br>
<button class="reset-button" style="margin-top: 0.5em;">Reset Canvas</button>
</div>
</template>
</body>
</html>