-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmobile.html
485 lines (423 loc) · 15.7 KB
/
mobile.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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
<!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" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="msapplication-tap-highlight" content="no" />
<meta name="description" content="Materialize is a modern responsive CSS framework based on Material Design by Google." />
<title>Mobile - Materialize</title>
<!-- Favicons-->
<link
rel="apple-touch-icon-precomposed"
href="images/favicon/apple-touch-icon-152x152.png"
/>
<meta name="msapplication-TileColor" content="#FFFFFF" />
<meta
name="msapplication-TileImage"
content="images/favicon/mstile-144x144.png"
/>
<link rel="icon" href="images/favicon/favicon-32x32.png" sizes="32x32" />
<!-- Android 5 Chrome Color-->
<!--<meta name="theme-color" content="#EE6E73" />-->
<style>
@import url("https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900,900i");
</style>
<!-- CSS-->
<link
href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined"
rel="stylesheet"
/>
<script>
const theme = localStorage.getItem("theme");
if (theme) document.documentElement.setAttribute("theme", theme);
</script>
<script type="module" crossorigin src="/assets/main-7444f380.js"></script>
<link rel="stylesheet" href="/assets/main-0dd28cd6.css">
</head>
<body>
<header>
<div class="search-results card"></div>
<!-- Top Nav -->
<div class="navbar-fixed">
<nav class="nav navbar">
<div class="nav-wrapper primary">
<a class="brand-logo">Mobile</a>
<a class="sidenav-trigger" href="#" data-target="nav-mobile"><i class="material-icons">menu</i></a>
<ul class="right">
<li>
<a href="" onclick="paletteSelectorModal.showModal(); return false;">
<i class="material-icons">palette</i>
</a>
</li>
<li>
<a id="theme-switch" href="#">
<i class="material-icons">dark_mode</i>
</a>
</li>
<li>
<a class="ext-link" href="https://github.com/materializecss/materialize" target="_blank" rel="noopener" title="Check out our GitHub">
<img src="images/github.svg" alt="GitHub logo" style="height: 20px" />
</a>
</li>
<li>
<a class="ext-link" href="https://opencollective.com/materialize" target="_blank" rel="noopener" title="Support us via OpenCollective">
<img src="images/opencollective.svg" alt="Open Collective logo" />
</a>
</li>
</ul>
</div>
</nav>
</div>
<!-- Sidenav -->
<ul class="sidenav sidenav-fixed" id="nav-mobile">
<li class="logo">
<a class="brand-logo" id="logo-container" href="/">
<img id="front-page-logo" src="images/materialize.svg" alt="Materialize Web Logo"/>
Materialize
</a>
</li>
<li class="search">
<div class="search-wrapper">
<input class="search-docs" id="search" type="search" placeholder="Search" autocomplete="off" autofocus /><i class="material-icons">search</i>
</div>
</li>
<li class="">
<a href="about.html">
<span class="material-icons">info</span>
About</a>
</li> <li class="">
<a href="getting-started.html">
<span class="material-icons">apps</span>
Getting started</a>
</li> <li>
<ul class="collapsible collapsible-accordion">
<li class="">
<a class="collapsible-header waves-effect">
<span class="material-icons">palette</span>
Styles
</a>
<div class="collapsible-body">
<ul>
<li class="">
<a href="color.html">
Color</a>
</li><li class="">
<a href="grid.html">
Grid</a>
</li><li class="">
<a href="helpers.html">
Helpers</a>
</li><li class="">
<a href="media-css.html">
Media Styles</a>
</li><li class="">
<a href="pulse.html">
Pulse</a>
</li><li class="">
<a href="sass.html">
Sass</a>
</li><li class="">
<a href="shadow.html">
Shadow</a>
</li><li class="">
<a href="table.html">
Table</a>
</li><li class="">
<a href="css-transitions.html">
Transitions</a>
</li><li class="">
<a href="typography.html">
Typography</a>
</li><li class="">
<a href="themes.html">
Themes</a>
</li><li class="">
<a href="waves.html">
Waves</a>
</li>
</ul>
</div>
</li>
</ul>
</li> <li>
<ul class="collapsible collapsible-accordion">
<li class="">
<a class="collapsible-header waves-effect">
<span class="material-icons">add_circle</span>
Components
</a>
<div class="collapsible-body">
<ul>
<li class="">
<a href="badges.html">
Badges</a>
</li><li class="">
<a href="buttons.html">
Buttons</a>
</li><li class="">
<a href="breadcrumbs.html">
Breadcrumbs</a>
</li><li class="">
<a href="cards.html">
Cards</a>
</li><li class="">
<a href="collections.html">
Collections</a>
</li><li class="">
<a href="floating-action-button.html">
Floating Action Button</a>
</li><li class="">
<a href="footer.html">
Footer</a>
</li><li class="">
<a href="icons.html">
Icons</a>
</li><li class="">
<a href="navbar.html">
Navbar</a>
</li><li class="">
<a href="pagination.html">
Pagination</a>
</li><li class="">
<a href="preloader.html">
Preloader</a>
</li><li class="">
<a href="auto-init.html">
Auto Init</a>
</li><li class="">
<a href="carousel.html">
Carousel</a>
</li><li class="">
<a href="collapsible.html">
Collapsible</a>
</li><li class="">
<a href="dropdown.html">
Dropdown</a>
</li><li class="">
<a href="feature-discovery.html">
Feature Discovery</a>
</li><li class="">
<a href="media.html">
Media</a>
</li><li class="">
<a href="modals.html">
Modals</a>
</li><li class="">
<a href="parallax.html">
Parallax</a>
</li><li class="">
<a href="pushpin.html">
Pushpin</a>
</li><li class="">
<a href="scrollspy.html">
Scrollspy</a>
</li><li class="">
<a href="sidenav.html">
Sidenav</a>
</li><li class="">
<a href="tabs.html">
Tabs</a>
</li><li class="">
<a href="toasts.html">
Toasts</a>
</li><li class="">
<a href="tooltips.html">
Tooltips</a>
</li><li class="">
<a href="datepicker.html">
Date Picker</a>
</li><li class="">
<a href="timepicker.html">
Time Picker</a>
</li>
</ul>
</div>
</li>
</ul>
</li> <li>
<ul class="collapsible collapsible-accordion">
<li class="">
<a class="collapsible-header waves-effect">
<span class="material-icons">text_fields</span>
Forms
</a>
<div class="collapsible-body">
<ul>
<li class="">
<a href="autocomplete.html">
Autocomplete</a>
</li><li class="">
<a href="checkboxes.html">
Checkboxes</a>
</li><li class="">
<a href="chips.html">
Chips</a>
</li><li class="">
<a href="radio-buttons.html">
Radio Buttons</a>
</li><li class="">
<a href="range.html">
Range</a>
</li><li class="">
<a href="select.html">
Select</a>
</li><li class="">
<a href="switches.html">
Switches</a>
</li><li class="">
<a href="text-inputs.html">
Text Inputs</a>
</li>
</ul>
</div>
</li>
</ul>
</li> <li class="active">
<a href="mobile.html">
<span class="material-icons">mobile_friendly</span>
Mobile</a>
</li>
<li class="version">
<a class="dropdown-trigger" href="#" data-target="version-dropdown">
<!-- svg -->
v2.2.1<svg class="caret" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg">
<path d="M7 10l5 5 5-5z"></path>
<path d="M0 0h24v24H0z" fill="none"></path>
</svg>
</a>
<ul class="dropdown-content" id="version-dropdown">
<li><a href="/">Latest</a></li>
<li><a href="/version/v2.1.1/">v2.1.1</a></li>
<li><a>2.1.0</a></li>
<li><a>2.0.4</a></li>
<li><a>2.0.3-alpha</a></li>
</ul>
</li>
</ul>
</header>
<dialog id="paletteSelectorModal" class="modal">
<div class="modal-header">
<h4>Color Scheme</h4>
</div>
<div class="modal-content">
<div class="color-row">
<input type="color" id="color-picker" value="#0000ff">
<label for="color-picker">Primary Color</label>
</div>
<button id="downloadCss" type="button" class="btn tonal">Download css style</button>
</div>
<div class="modal-footer">
<button type="button" class="btn text waves-effect" onclick="paletteSelectorModal.close()">Close</button>
</div>
</dialog>
<main>
<section class="section primary-container m-2" style="border-radius: 24px" id="index-banner">
<div class="container row py-5">
<div class="col s12 m8 offset-m1 xl7 offset-xl1 center-on-small-only">
<h1 class="header" style="font-size: 4.2rem; color: var(--md-sys-color-primary)">Mobile</h1>
<h4 class="light" style="line-height: 1.25; color: var(--md-sys-color-primary)">Materialize is a modern responsive CSS framework based on Material Design by Google.</h4>
</div>
</div>
</section>
<div class="container">
<div class="row">
<div class="col s12 m8 offset-m1 xl7 offset-xl1">
<!-- Sidenav -->
<div id="right" class="section scrollspy">
<h3 class="header">Navbar</h3>
<p class="caption">
The navbar is fully contained by an HTML5 Nav tag. Inside a recommended container div, there are 2 main parts of the navbar. A logo or brand link, and the
navigations links. You can align these links to the left or right.
</p>
<h4>Drag Out Menu</h4>
<p>This plugin includes several options for customizing the menu. See <a href="sidenav.html#options">Plugin Options</a> for details.</p>
<img class="mobile-image" src="images/menu.gif" />
</div>
<!-- Toast -->
<div id="toast-mobile" class="section scrollspy">
<h3 class="header">Toast</h3>
<h4>Swipe to Dismiss</h4>
<p>On all devices, you can swipe to dismiss toasts.</p>
<img class="mobile-image" src="images/toast.gif" />
</div>
</div>
<div class="col hide-on-small-only m3 xl3">
<div class="toc-wrapper">
<div style="height: 1px">
<ul class="section table-of-contents">
<li><a href="#right">Sidebar</a></li>
<li><a href="#toast-mobile">Toast</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- End Container -->
</main>
<footer class="page-footer">
<div class="container">
<div class="row">
<div class="s12 m10 offset-m1">
<div class="row" style="gap: 2rem">
<div class="s12 m6 l4">
<h5>Help Materialize Grow</h5>
<p>
We hope you have enjoyed using <a href="https://materializeweb.com">Materialize</a> and if you feel like it has helped you out and want to support the team you can
help us by opening issues or contributing on GitHub.
</p>
<a tabindex="0" class="btn tonal btn-small waves-effect waves-light" target="_blank" href="https://github.com/materializecss/materialize">Contribute</a>
</div>
<div class="s12 m6 l4">
<h5>Join the Discussion</h5>
<p>
We have a Gitter chat room set up where you can talk directly with us. Come in and discuss new features, future goals, general problems or questions, or anything else
you can think of.
</p>
<a tabindex="0" class="btn tonal btn-small waves-effect waves-light" href="https://gitter.im/materializecss/materialize" target="_blank">Chat</a>
</div>
<div class="s12 m6 l4" style="overflow: hidden">
<h5>Star us</h5>
<div>
<a href="https://github.com/materializecss/materialize" target="_blank">
<img style="width: 42%" alt="GitHub Repo stars" src="https://img.shields.io/github/stars/materializecss/materialize" />
</a>
</div>
<!-- Ad Placements -->
<div style="width: 100%; background-color: #f883">
<div style="height: 90px; width: 100%">
<script async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-9412332535613378" crossorigin="anonymous"></script>
<ins
class="adsbygoogle"
style="display: block"
data-ad-format="fluid"
data-ad-layout-key="-fb+5w+4e-db+86"
data-ad-client="ca-pub-9412332535613378"
data-ad-slot="4127762940"
></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
</div>
</div>
</div>
<div class="footer-copyright">
© 2014-
<noscript>2018</noscript>
<script>
document.write(new Date().getFullYear());
</script>
Materialize, All rights reserved.<a class="right" target="_blank" href="https://github.com/materializecss/materialize/blob/main/LICENSE">MIT License</a>
</div>
</div>
</div>
</div>
</footer>
</body>
</html>