-
-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathindex.html
132 lines (117 loc) · 4.14 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
128
129
130
131
132
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>rstream-grid</title>
<link
href="https://unpkg.com/tachyons@4/css/tachyons.min.css"
rel="stylesheet"
/>
<!-- <link href="tachyons.min.css" rel="stylesheet"> -->
<style>
* {
user-select: none;
}
*::selection {
background: none;
}
input[type="range"] {
-webkit-appearance: none;
width: 100%;
margin: -3px 0;
background: #111;
}
input[type="range"]:focus {
outline: none;
}
input[type="range"]::-webkit-slider-runnable-track {
width: 100%;
height: 14px;
cursor: pointer;
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
background: #000;
border-radius: 25px;
border: 0px solid rgba(0, 0, 0, 0);
}
input[type="range"]::-webkit-slider-thumb {
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
border: 0px solid #111111;
height: 8px;
width: 16px;
border-radius: 8px;
background: #ffffff;
cursor: pointer;
-webkit-appearance: none;
margin-top: 3px;
}
input[type="range"]:focus::-webkit-slider-runnable-track {
background: #1f1f1f;
}
input[type="range"]::-moz-range-track {
width: 100%;
height: 14px;
cursor: pointer;
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
background: #000;
border-radius: 25px;
border: 0px solid rgba(0, 0, 0, 0);
}
input[type="range"]::-moz-range-thumb {
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
border: 0px solid #111111;
height: 8px;
width: 16px;
border-radius: 8px;
background: #ffffff;
cursor: pointer;
}
input[type="range"]::-ms-track {
width: 100%;
height: 14px;
cursor: pointer;
background: transparent;
border-color: transparent;
color: transparent;
}
input[type="range"]::-ms-fill-lower {
background: #000000;
border: 0px solid rgba(0, 0, 0, 0);
border-radius: 50px;
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type="range"]::-ms-fill-upper {
background: #000;
border: 0px solid rgba(0, 0, 0, 0);
border-radius: 50px;
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
}
input[type="range"]::-ms-thumb {
box-shadow: 0px 0px 0px #000000, 0px 0px 0px #0d0d0d;
border: 0px solid #111111;
width: 16px;
border-radius: 8px;
background: #ffffff;
cursor: pointer;
height: 8px;
}
input[type="range"]:focus::-ms-fill-lower {
background: #000;
}
input[type="range"]:focus::-ms-fill-upper {
background: #1f1f1f;
}
</style>
<script
async
defer
data-domain="thi.ng"
src="https://plausible.io/js/plausible.js"
></script>
</head>
<body class="ma0 pa0 lh-copy sans-serif bg-black white">
<div id="app"></div>
<script type="text/javascript" src="./src/index.ts"></script>
</body>
</html>