-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpanel.html
More file actions
executable file
·35 lines (30 loc) · 1.1 KB
/
panel.html
File metadata and controls
executable file
·35 lines (30 loc) · 1.1 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="styles/panel.css" />
<script src="scripts/ga.js" async></script>
</head>
<body>
<div class="alert">Close and reopen DevTools to apply your changes!</div>
<div class="container">
<h4><small>Current Theme:</small></h4>
<header class="title">
<h1 id="currentTheme"></h1>
</header>
<ul class="palette"></ul>
<select id="theme-options" data-options="theme in themes"></select>
<div class="font-family">
<label for="font-family-input">Font Family: <small>(press enter to save)</small></label>
<input id="font-family-input" type="text" placeholder="e.g. Menlo" />
</div>
<div class="font-size">
<label for="font-size-input">Font size: <output id="font-size-output" for="font-size-input"></output>px</label>
<input id="font-size-input" type="range" min="6" max="22" />
</div>
</div>
<div class="footer">
Mahalo from <a target="_blank" href="https://github.com/micjamking">Mike King</a>
</div>
<script src="scripts/panel.js"></script>
</body>
</html>