-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
executable file
·150 lines (141 loc) · 6.23 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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<link href="http://cdnjs.cloudflare.com/ajax/libs/ratchet/1.0.1/ratchet.css" rel="stylesheet" />
<link href="css/ratchet-ios7.css" rel="stylesheet" />
</head>
<body>
<header class="bar-title">
<a class="button-prev" href="#">Previous</a>
<h1 class="title">Page Title</h1>
<a class="more icon button" href="#modal">More</a>
</header>
<nav class="bar-standard bar-header-secondary">
<ul class="segmented-controller">
<li class="active">
<a href="#">Thing one</a>
</li>
<li>
<a href="#">Thing two</a>
</li>
<li>
<a href="#">Thing three</a>
</li>
</ul>
</nav>
<!--<nav class="bar-standard bar-header-secondary">
<form>
<input type="search" placeholder="Search" />
<a href="#">Cancel</a>
</form>
</nav>-->
<nav class="bar-tab"><!--<nav class="bar-tab icons-only">-->
<ul class="tab-inner">
<li class="tab-item active">
<a href="#">
<img class="tab-icon plus" src="data:image/gif;base64,R0lGODlhAQABAAAAACw=" />
<div class="tab-label">Label</div>
</a>
</li>
<li class="tab-item">
<a href="#">
<img class="tab-icon plus-filled" src="data:image/gif;base64,R0lGODlhAQABAAAAACw=" />
<div class="tab-label">Label</div>
</a>
</li>
<li class="tab-item">
<a href="#">
<img class="tab-icon minus-filled" src="data:image/gif;base64,R0lGODlhAQABAAAAACw=" />
<div class="tab-label">Label</div>
</a>
</li>
<li class="tab-item">
<a href="#">
<img class="tab-icon history" src="data:image/gif;base64,R0lGODlhAQABAAAAACw=" />
<div class="tab-label">Label</div>
</a>
</li>
<li class="tab-item">
<a href="#">
<img class="tab-icon info" src="data:image/gif;base64,R0lGODlhAQABAAAAACw=" />
<div class="tab-label">Label</div>
</a>
</li>
</ul>
</nav>
<!--<section class="autocomplete content"></section>-->
<section class="content">
<div class="content-padded">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Etiam aliquet ligula a dignissim dictum. Sed auctor est nec erat tristique, id pellentesque purus mattis.</p>
<a class="button-block">Block level button</a>
<div class="group">
<a class="button-positive button">Button positive</a>
<a class="button-negative button">Button negative</a>
</div>
</div>
<ul class="list">
<li class="list-divider header">Multiple items</li>
<li>
<img src="http://placehold.it/50/FF9500/FF9500" alt="" />
List item 1
<div class="toggle active">
<div class="toggle-handle"></div>
</div>
</li>
<li><a href="#">
<img src="http://placehold.it/50/8E8E93/8E8E93" alt="" />
List item 2
<span class="chevron"></span>
</a></li>
<li><a href="#">
<img src="http://placehold.it/50/5856D6/5856D6" alt="" />
List item 3
<span class="chevron"></span>
<span class="setting">Your setting</span>
</a></li>
</ul>
<ul class="list editable">
<li class="list-divider header">Editable list</li>
<li><div>Edit item 1</div></li>
<li><div><a href="#">
Edit item 2
<span class="chevron"></span>
<span class="setting">Your setting</span>
</a></div></li>
<li class="list-divider footer">Describe the items above.</li>
</ul>
</section>
<section id="modal" class="modal">
<header class="bar-title">
<h1 class="title">Modal window</h1>
<a class="button" href="#modal">Close</a>
</header>
<div class="content">
<form class="content-padded">
<input type="search" placeholder="Search" />
<div class="input-group">
<input type="text" placeholder="Username" />
<div class="input-row">
<label>Email</label>
<input type="email" placeholder="[email protected]" />
</div>
<div class="input-row">
<label>Name</label>
<input type="text" placeholder="John Smith" />
</div>
</div>
</form>
</div>
</section>
<script src="http://cdnjs.cloudflare.com/ajax/libs/ratchet/1.0.1/ratchet.js"></script>
<script src="js/ratchet-ios7.js"></script>
</body>
</html>