-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (118 loc) · 4.64 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html lang="en">
<head>
<title>qset</title>
<meta charset="utf-8" />
<meta name="theme-color" content="#ffd700" />
<meta
name="viewport"
content="minimum-scale=1, initial-scale=1, width=device-width, shrink-to-fit=no"
/>
<link rel="manifest" href="manifest.json" />
<link rel="shortcut icon" href="favicon.ico" />
<meta property="og:title" content="qset" />
<meta property="og:description" content="the witness audiolog library" />
<meta property="og:image" content="https://wh0am1.dev/qset/img/banner.png" />
<meta property="og:url" content="https://wh0am1.dev/qset" />
<meta property="og:site_name" content="qset" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:image:alt" content="qset" />
<link rel="stylesheet" href="css/vendor/fontawesome-5.0.13.css" />
<link rel="stylesheet" href="css/vendor/tachyons.min.css" />
<link rel="stylesheet" href="css/main.css" />
</head>
<body class="code bg-black-90">
<article id="hero" class="vh-100 dt w-100 bg-black-90 near-white">
<div class="dtc v-mid tc pa3 pa4-l">
<header class="tc ph4">
<img src="img/qset-white.svg" id="logo" class="qlogo grow" />
<h1 class="f1 f-subheadline-m f-headline-l fw6 mv0 tc athelas">qset</h1>
<section class="f5 f4-m f3-l fw2 lh-copy mt4">
<div>
<a
class="link yellow hover-black-90 hover-bg-yellow ph1 br2"
href="http://the-witness.net"
target="_blank"
>the witness</a
>
audiolog library
</div>
<div class="mt2">
music:
<a
class="link yellow hover-black-90 hover-bg-yellow ph1 br2"
href="https://aphextwin.warp.net"
target="_blank"
>aphex twin</a
>
- #3
</div>
<div class="mt2">
made with <i class="fas fa-heart red grow"></i> by
<a
class="link yellow hover-black-90 hover-bg-yellow ph1 br2"
href="https://wh0am1.dev"
target="_blank"
>wh0am1</a
>
</div>
</section>
</header>
<div class="desktop mw6 center mt5 ph3-ns f6 dn">
<div class="cf ph2-ns">
<div class="fl w-50 pa2"><kbd>nav</kbd>: arrows</div>
<div class="fl w-50 pa2"><kbd>rnd</kbd>: space</div>
<div class="fl w-50 pa2"><kbd>color</kbd>: h</div>
<div class="fl w-50 pa2"><kbd>mute</kbd>: m</div>
</div>
</div>
<div class="mobile mw6 center mt5 ph3-ns f6 dn">
<div class="cf ph2-ns">
<div class="fl w-100 w-33-ns pa2"><kbd>nav</kbd>: swipe</div>
<div class="fl w-100 w-33-ns pa2"><kbd>rnd</kbd>: hold</div>
<div class="fl w-100 w-33-ns pa2"><kbd>color</kbd>: tap</div>
</div>
</div>
</div>
</article>
<article id="content" class="vh-100 dt w-100 bg-yellow black-90 br2">
<section id="quote" class="dtc v-mid tc pv3 pv5-m pv6-l ph1 ph3-m ph4-l maya">
<div class="tc ph4 pv4 mw7-l center">
<h1
id="qtitle"
class="desktop pa2 br2 f3 f2-m f1-l fw6 tc athelas bg-black-90 near-white dn"
>
🤜 hit space 🤛
</h1>
<h1
id="qtitlem"
class="mobile pa2 br2 f3 f2-m f1-l fw6 tc athelas bg-black-90 near-white dn"
>
👉 swipe this 👈
</h1>
<div id="qcontent" class="f5 f4-m f3-l lh-copy athelas">
tear down the gate of hallucination
</div>
</div>
</section>
</article>
<script src="js/vendor/jquery-3.3.1.min.js"></script>
<script src="js/vendor/jquery.color-2.1.2.min.js"></script>
<script src="js/vendor/jquery.mobile-events.min.js"></script>
<script src="js/vendor/fontawesome-5.0.13.min.js"></script>
<script src="js/main.js"></script>
<script src="js/bipbop.js"></script>
<script src="js/scroll.js"></script>
<script src="js/color.js"></script>
<script src="js/quote.js"></script>
<script src="js/audio.js"></script>
<script src="js/mouse.js"></script>
<script src="js/touch.js"></script>
<script src="js/keyboard.js"></script>
<script src="data/audiologs.js"></script>
<audio id="bgm" class="dn" preload loop volume="0.0">
<source src="bgm/aphex-twin-3.ogg" type="audio/ogg" />
<source src="bgm/aphex-twin-3.mp3" type="audio/mpeg" />
</audio>
</body>
</html>