forked from neodigm/vivid_vector_alphabet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (54 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta viewport="initial-scale=1, maximum-scale=2, minimum-scale=1, width=device-width, height=device-height">
<title>Neodigm WASM GoLang Vivid Vector 🖌️ Alpha 256 x 256</title>
<script async src="vividVector.js"></script>
</head>
<body>
<style>
body { margin: 0; }
.alpha-grd {
cursor: pointer;
display: grid;
grid-template-columns: repeat( auto-fill, minmax(26px, 64px));
background-color: #790300;
background-image: linear-gradient(to bottom, #490100 10%, #000 90%);
padding: 24px;
}
.alpha-grd img { max-width: 64px; margin: 8px 12px;}
.alpha-grd__hide { display: none; }
.truth-bang {
cursor: pointer;
display: block;
text-align: center;
height: 96px; width: 96px;
margin: 0 auto;
}
.truth-bang img {
height: 96px; width: 96px;
}
.truth-banner {
cursor: pointer;
display: block;
text-align: center;
margin: 0 auto;
}
</style>
<main role="main">
<section class="alpha-grd">
</section>
</main>
<footer>
<br>
<a class="js-truth-bang truth-bang">
<img src="https://neodigm.github.io/vivid_vector_alphabet/truth_bang.svg" alt="Vivid Truth Bang">
</a>
<br><br>
<a class="js-truth-bang truth-banner" href="https://github.com/neodigm/vivid_vector_alphabet">
<img src="https://repository-images.githubusercontent.com/182188356/5f934800-63bc-11e9-9ce7-a9d8c303917e" alt="Vivid Truth Bang Star on GitHub">
</a>
</footer>
</body>
</html>