-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (52 loc) · 2.18 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Etch-a-Sketch!</title>
<!-- Google Material Icons & Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Urbanist&family=Viga&family=Roboto+Mono:wght@400&family=Architects+Daughter&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Stylesheets -->
<link rel="stylesheet" href="styles/styles.css">
<!-- Javascript files -->
<script src="scripts/script.js" charset="utf-8" defer></script>
</head>
<body>
<h1 class="eas-heading">ETCH-A-SKETCH!</h1>
<div class="main-board">
<div class="board-header main-board-item">
<button id="reset-button" class="" type="button" name="button">CLEAR</button>
<div class="board-header-item board-header-flex">
<h2 class="board-name">BIGSBY'S BOARD</h3>
<span class="material-icons">info</span>
</div>
<span class="material-icons settings-icon">settings</span>
</div>
<div class="flex-container main-board-item">
</div>
</div>
<!-- Settings div -->
<div id="settings-div" class="hide">
<div class="settings-main">
<h1>Sketch settings</h1>
<p>Current Grid size - <span class="grid-size-display"></span></p>
<div class="grid-size-slider">
<p>Grid size :</p>
<input id="grid-size" type="range" min="2" max="50" value="20">
</div>
<div class="color-picker-div">
<p>Choose color -</p>
<input type="color" value="#f6d167" class="color-picker">
</div>
<p class="tip-para">Tip: Hold down Shift key to move across the grid without coloring the squares.</p>
<button class="exit-settings-button" type="button" name="button">SKETCH!</button>
</div>
</div>
<footer>
<p class="footer-paragraph">Made with ❤️ by <a class="github-link" href="https://github.com/bigsbunny" target="_blank">bigsbunny!</a></p>
</footer>
</body>
</html>