-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
82 lines (81 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title id="title">Strudler Showcase</title>
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="user-scalable=no, width=device-width" />
<link rel="manifest" href="manifest.webmanifest" />
<meta name="theme-color" content="#FFF">
<meta name="apple-mobile-web-app-title" content="Strudler Showcase" />
<link rel="stylesheet" href="latest/style.min.css">
<link rel="stylesheet" href="versions/latest/style.min.css">
<style type="text/css">
:root {
--accentColor: var(--SystemPink);
}
</style>
</head>
<body ontouchstart="">
<div id="viewport">
<div class="UIKit-UISegmentedControl" onchange="doStuff()"
><label
><input type="radio" name="sort-order" value="map" checked=""
><div>Map</div
></label
><label
><input type="radio" name="sort-order" value="transit"
><div>Transit</div
></label
><label
><input type="radio" name="sort-order" value="satellite"
><div>Satellite</div
></label
></div>
<div class="table-grouped">
<header>Navigation Voice Volume</header>
<section>
<div class="table-cell">
No Voice
</div>
<div class="table-cell">
Low Volume
</div>
<div class="table-cell">
Normal Volume
</div>
<div class="table-cell">
Loud Volume
</div>
</section>
<footer>Play media at a lower volume during navigation prompts.</footer>
<section>
<div class="table-cell">
Pause Spoken Audio
<input class="UIKit-UISwitch" type="checkbox" name="checktest">
</div>
</section>
</div>
</div>
<nav id="tabs" onchange="doStuff()"
><label
><input
type="radio"
name="tabs"
value="tab1"
checked=""
><div alt="Star Icon"></div
><span>Label</span
></label
><label
><input
type="radio"
name="tabs"
value="tab2"
><div style="--src: url(/star.svg)" alt="Star Icon"></div
><span>Label</span
></label
></nav>
</body>
</html>