-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.48 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="Content-Security-Policy" content="default-src 'self'; script-src 'self'" />
<meta http-equiv="X-Content-Security-Policy" content="default-src 'self'; script-src 'self'" />
<title>Google Icons Picker</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<input type="text" name="" id="input" />
<button id="search-button">
<img src="assets/action/search/materialicons/48dp/2x/baseline_search_black_48dp.png" alt="" />
</button>
<button id="settings-button">
<img src="assets/action/settings/materialicons/48dp/2x/baseline_settings_black_48dp.png" alt="" />
</button>
</header>
<main>
<span id="info-text"></span>
<article id="banner">
<span>Copied to clipboard!</span>
</article>
<section id="settings" class="hide">
<div class="copy-settings selected"><i class="material-icons">icon</i></div>
<div class="copy-settings"><span class="material-icons">icon</span></div>
<div class="copy-settings">icon</div>
<span>Select how you would like the icons to be copied to your clipboard.</span>
<article id="settings-buttons">
<button id="button-hti">How to implement</button>
<button id="button-quit">Quit (⌘Q)</button>
</article>
</section>
<section id="icons"></section>
</main>
</body>
</html>