forked from Dogfalo/materialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomponents.html
1415 lines (1326 loc) · 54.1 KB
/
components.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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no"/>
<title>Components - 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"/>
<!-- CSS -->
<link href="css/prism.css" rel="stylesheet"/>
<link href="css/ghpages-materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="http://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" type="text/css"/>
</head>
<body>
<!-- Buy sell ads-->
<script>
(function(){
var bsa = document.createElement('script');
bsa.type = 'text/javascript';
bsa.async = true;
bsa.src = 'http://s3.buysellads.com/ac/bsa.js';
(document.getElementsByTagName('head')[0]||document.getElementsByTagName('body')[0]).appendChild(bsa);
})();
</script>
<nav id="">
<div class="container">
<div class="nav-wrapper"><a href="http://materializecss.com/" class="brand-logo">Materialize</a>
<ul id="nav-mobile" class="right side-nav">
<li><a href="http://materializecss.com/about.html">About</a></li>
<li><a href="http://materializecss.com/getting_started.html">Getting Started</a></li>
<li><a href="http://materializecss.com/sass.html">Sass</a></li>
<li class="active"><a href="http://materializecss.com/components.html">Components</a></li>
<li><a href="http://materializecss.com/javascript.html">JavaScript</a></li>
<li><a href="http://materializecss.com/mobile.html">Mobile</a></li>
</ul><a href="#" data-activates="nav-mobile" class="button-collapse"><i class="mdi-navigation-menu"></i></a>
</div>
</div>
</nav><div class="tabs-wrapper">
<div class="row white z-depth-1">
<div class="container">
<ul class="tabs">
<li class="tab"><a href="#tab1">Typography</a></li>
<li class="tab"><a href="#tab2">Grid</a></li>
<li class="tab"><a href="#tab4">Forms</a></li>
<li class="tab"><a href="#tab5">Buttons</a></li>
<li class="tab"><a href="#tab6">Navbar</a></li>
<li class="tab"><a href="#tab7">Content</a></li>
</ul>
</div>
</div>
</div>
<div class="container bsa">
<div class="buysellads hide-on-small-only">
<!-- BuySellAds Zone Code -->
<div id="bsap_1300189" class="bsarocks bsap_b9468009151bf6fe6de9519ffdd7961f"></div>
<!-- End BuySellAds Zone Code -->
</div>
<!-- Typography Section -->
<div id="tab1" class="row">
<div class="col hide-on-small-only m3 l2">
<div style="height: 1px;">
<ul class="section table-of-contents">
<li><a href="#roboto">Roboto</a></li>
<li><a href="#headers">Headers</a></li>
<li><a href="#blockquote">Blockquote</a></li>
<li><a href="#flow">Flow Text</a></li>
</ul>
</div>
</div>
<div class="col s12 m9 l10">
<div class="section">
<h2 class="header">Typography</h2>
<p class="caption">
The standard font Material Design uses is Roboto. We have included the font files with our framework.
</p>
<div id="roboto" class="scrollspy">
<h4>Roboto 2.0</h4>
<p class="col s12 m4">We bundle our framework with the latest iteration of Roboto Google has released. It comes with 5 different font weights you can use: 200, 300, 400, 500, 600.<br> <br> Here is an image from Google's Roboto Specimen document displaying the different font weights.</p>
<img class="col s12 m8" src="http://material-design.storage.googleapis.com/publish/v_2/material_ext_publish/0Bx4BSt6jniD7SW9CUzR4MnRpOTg/style_typography_roboto1.png"></img>
<h4>Removing Roboto</h4>
<p>In case you don't want to use Roboto on your webpage, fear not. Simply change the font stack by modifying the code below to your liking and add it to your custom css.</p>
<pre><code class="language-css">
html {
font-family: GillSans, Calibri, Trebuchet, sans-serif
}
</code></pre>
</div>
<div id="headers" class="section scrollspy">
<h4>Headers</h4>
<p>We provide some basic styling on header tags. In the example on the right, you can see the difference in sizes between the 6 header tags</p>
<div class="card-panel">
<h1>Heading h1</h1>
<h2>Heading h2</h2>
<h3>Heading h3</h3>
<h4>Heading h4</h4>
<h5>Heading h5</h5>
<h6>Heading h6</h6>
</div>
</div>
<div id="blockquote" class="section scrollspy">
<h4>Blockquotes</h4>
<p>
Blockquotes are mainly used to give emphasis to a quote or citation. You can also use these for some extra text hierarchy and emphasis.
</p>
<blockquote>
This is an example quotation that uses the blockquote tag.
<br>Here is another line to make it look bigger.
</blockquote>
<div class="row">
<pre><code class="language-markup col s12">
<blockquote>
This is an example quotation that uses the blockquote tag.
</blockquote>
</code></pre>
</div>
</div>
<div id="flow" class="section scrollspy">
<h4>Flow Text</h4>
<a id="flow-toggle" class="btn waves-effect waves-light">Toggle flow-text</a>
<div id="flow-text-demo" class="card-panel">
<p class="flow-text">
One common flaw we've seen in many frameworks is a lack of support for truly responsive text. While elements on the page resize fluidly, text still resizes on a fixed basis. To ameliorate this problem, for text heavy pages, we've created a class that fluidly scales text size and line-height to optimize readability for the user. Line length stays between 45-80 characters and line height scales to be larger on smaller screens.</p>
<p class="flow-text">To see Flow Text in action, slowly resize your browser and watch the size of this text body change! Use the button above to toggle off/on flow-text to see the difference!</p>
</div>
<br>
<p>To use flow-text on a body of text, simply just add the class <code class="language-markup">flow-text</code> to a tag, see the code blow.</p>
<div class="row">
<pre><code class="language-markup col s12">
<p class="flow-text">I am Flow Text</p>
</code></pre>
</div>
</div>
</div>
</div>
</div>
<!-- End Typography -->
<div id="tab2" class="row">
<!-- table of contents-->
<div class="col hide-on-small-only m3 l2">
<div style="height: 1px;">
<ul class="section table-of-contents">
<li><a href="#grid">Grid</a></li>
<li><a href="#offset">Offsets</a></li>
</ul>
</div>
</div>
<div class="col s12 m9 l10">
<div id="grid" class="section scrollspy">
<h2 class="header">Grids</h2>
<p class="caption">
We are using a standard 12 column fluid responsive grid system. It comes with 3 standard screen size media queries where you can alter the columns.</p>
<table class="hoverable">
<thead>
<tr>
<th></th>
<th data-field="id">Mobile Devices <br><= 600px</th>
<th data-field="name">Tablet Devices <br><= 992px</th>
<th data-field="price">Desktop Devices <br>>= 992px</th>
</tr>
</thead>
<tbody>
<tr>
<td><strong>Class Prefix</strong></td>
<td><code class="language-markup">.s</code></td>
<td><code class="language-markup">.m</code></td>
<td><code class="language-markup">.l</code></td>
</tr>
<tr>
<td><strong>Container Width</strong></td>
<td>85%</td>
<td>85%</td>
<td>70%</td>
</tr>
<tr>
<td><strong>Number of Columns</strong></td>
<td>12</td>
<td>12</td>
<td>12</td>
</tr>
</tbody>
</table>
<br><br>
<h4>Container</h4>
<p>The container class is set to ~70% of the window width. It helps you center and contain your page content. We use the container to contain our body content. Try the button below to see what the page looks like without containers</p>
<a id="container-toggle-button" class="btn waves-effect waves-light">Toggle Containers</a>
<p>To add a container just put your content inside a <code class="language-markup"><div></code> tag with a <code class="language-markup">container</code> class. Here's an example of how your page might be set up.</p>
<pre><code class="language-markup">
<body>
<div class="container">
<!-- Page Content goes here -->
</div>
</body>
</code></pre>
<h4>Grid Examples</h4>
<div class="row">
<div class="col grid-example s12 blue lighten-1"><p>s12</p></div>
<div class="col grid-example s12 m3 teal lighten-1"><p>s12 m3</p></div>
<div class="col grid-example s12 m6 teal lighten-1"><p>s12 m6</p></div>
<div class="col grid-example s12 m3 teal lighten-1"><p>s12 m3</p></div>
<div class="col grid-example s12 m6 l3 purple lighten-3"><p>s12 m6 l3</p></div>
<div class="col grid-example s12 m6 l3 purple lighten-3"><p>s12 m6 l3</p></div>
<div class="col grid-example s12 m6 l3 purple lighten-3"><p>s12 m6 l3</p></div>
<div class="col grid-example s12 m6 l3 purple lighten-3"><p>s12 m6 l3</p></div>
</div>
<div class="row">
<pre><code class="language-markup col s12">
<div class="row">
<div class="col s12"><p>s12</p></div>
<div class="col s12 m3"><p>s12 m3</p></div>
<div class="col s12 m6"><p>s12 m6</p></div>
<div class="col s12 m3"><p>s12 m3</p></div>
</div>
<div class="row">
<div class="col s12 m6 l3"><p>s12 m6 l3</p></div>
<div class="col s12 m6 l3"><p>s12 m6 l3</p></div>
<div class="col s12 m6 l3"><p>s12 m6 l3</p></div>
<div class="col s12 m6 l3"><p>s12 m6 l3</p></div>
</div>
</code></pre>
</div>
</div>
<div id="offset" class="section scrollspy">
<h4>Offsets</h4>
<p>You can use offsets to make smaller sized columns without needing to fill in the empty space.</p>
<div class="row">
<div class="col grid-example s8 offset-s2"><p>s8 offset-s2</p></div>
<div class="col grid-example s8 offset-s2 m8 offset-m4 l10 offset-l2"><p>s8 offset-s2 m8 offset-m4 l10 offset-l2</p></div>
</div>
<div class="row">
<pre><code class="language-markup col s12">
<div class="col s8 offset-s2">
<p>s8 offset-s2</p>
</div>
<div class="col s6 offset-s6 m8 offset-m4 l10 offset-l2">
<p>s8 offset-s2 m8 offset-m4 l10 offset-l2</p>
</div>
</code></pre>
</div>
</div>
</div>
</div>
<!-- Form Elements -->
<div id="tab4" class="row">
<div class="col hide-on-small-only m3 l2">
<div style="height: 1px;">
<ul class="section table-of-contents">
<li><a href="#input">Input Fields</a></li>
<li><a href="#textarea">Textareas</a></li>
<li><a href="#select">Select</a></li>
<li><a href="#radio">Radio Buttons</a></li>
<li><a href="#checkbox">Checkboxes</a></li>
<li><a href="#range">Range</a></li>
<li><a href="#date-picker">Date Picker</a></li>
</ul>
</div>
</div>
<div class="col s12 m9 l10">
<div id="input" class="section scrollspy">
<h2 class="header">Forms</h2>
<p class="caption">
Forms are the standard way to receive user inputted data. The transitions and smoothness of these elements are very important because of the inherent user interaction associated with forms.
</p>
<h4>Input fields</h4>
<p>Text fields allow user input. The border should light up simply and clearly indicating which field the user is currently editing.</p><br>
<div class="row">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<input id="first_name" type="text" required>
<label for="first_name">First Name</label>
</div>
<div class="input-field col s6">
<input id="last_name" type="text" required>
<label for="last_name">Last Name</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="username" type="text" required>
<label for="username">Username</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="password" type="password" required>
<label for="password">Password</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="email" type="email" required>
<label for="email">Email</label>
</div>
</div>
</form>
</div>
<div class="row">
<pre><code class="language-markup col s12">
<div class="row">
<form class="col s12">
<div class="row">
<div class="input-field col s6">
<input id="first_name" type="text" required>
<label for="first_name">First Name</label>
</div>
<div class="input-field col s6">
<input id="last_name" type="text" required>
<label for="last_name">Last Name</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="username" type="text" required>
<label for="username">Username</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="password" type="password" required>
<label for="password">Password</label>
</div>
</div>
<div class="row">
<div class="input-field col s12">
<input id="email" type="email" required>
<label for="email">Email</label>
</div>
</div>
</form>
</div>
</code></pre>
</div>
</div>
<div id="textarea" class="section scrollspy">
<h4>Textarea</h4>
<p>Textareas allow larger expandable user input. The border should light up simply and clearly indicating which field the user is currently editing. </p>
<p><strong>Textareas will auto resize to the text inside.</strong></p>
<div class="row">
<form class="col s12">
<div class="row">
<div class="input-field col s12">
<textarea required></textarea>
<label>Textarea</label>
</div>
</div>
</form>
</div>
<div class="row">
<pre><code class="language-markup col s12">
<div class="row">
<form class="col s12">
<div class="row">
<div class="input-field col s12">
<textarea></textarea>
<label>Textarea</label>
</div>
</div>
</form>
</div>
</code></pre>
</div>
</div>
<div id="select" class="section scrollspy">
<h4>Select</h4>
<p> Select allows user input through specified options. </p>
<div class="row">
<form class="col s6">
<div class="row">
<div class="col s12">
<label>Option</label>
<select>
<option value="" disabled selected>Choose your option</option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
</div>
<div class="col s12">
<br><br><br>
<p>You can add the class <code class="language-markup">disabled</code> to get the browser default.</p>
<select class="disabled">
<option value="" disabled selected>Choose your option</option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
</div>
</div>
</form>
</div>
<div class="row">
<pre><code class="language-markup col s12">
<label>Option</label>
<select>
<option value="" disabled selected>Choose your option</option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
<select class="disabled">
<option value="" disabled selected>Choose your option</option>
<option value="1">Option 1</option>
<option value="2">Option 2</option>
<option value="3">Option 3</option>
</select>
</code></pre>
</div>
</div>
<div id="radio" class="section scrollspy">
<h4>Radio Buttons</h4>
<p>Radio Buttons are used when the user must make only one selection out of a group of items</p>
<form action="#">
<p>
<input name="group1" type="radio" id="test1" />
<label for="test1">Red</label>
</p>
<p>
<input name="group1" type="radio" id="test2" />
<label for="test2">Yellow</label>
</p>
<p>
<input name="group1" type="radio" id="test3" />
<label for="test3">Green</label>
</p>
<p>
<input name="group1" type="radio" id="test4" disabled="disabled" />
<label for="test4">Brown</label>
</p>
</form>
<p>Add radio buttons to a group by adding the name attribute along with the same corresponding value for each of the radio buttons in the group. Create disabled radio buttons by adding the disabled attribute as shown below.</p>
<div class="row">
<pre><code class="language-markup col s12">
<form action="#">
<p>
<input name="group1" type="radio" id="test1" />
<label for="test1">Red</label>
</p>
<p>
<input name="group1" type="radio" id="test2" />
<label for="test2">Yellow</label>
</p>
<p>
<input name="group1" type="radio" id="test3" />
<label for="test3">Green</label>
</p>
<p>
<input name="group1" type="radio" id="test4" disabled="disabled" />
<label for="test4">Brown</label>
</p>
</form>
</code></pre>
</div>
</div>
<div id="checkbox" class="section scrollspy">
<h4>Checkboxes</h4>
<p>Checkboxes</p>
<form action="#">
<p>
<input type="checkbox" id="test5" />
<label for="test5">Red</label>
</p>
<p>
<input type="checkbox" id="test6" checked="checked" />
<label for="test6">Yellow</label>
</p>
<p>
<input type="checkbox" id="test7" checked="checked" disabled="disabled" />
<label for="test7">Green</label>
</p>
<p>
<input type="checkbox" id="test8" disabled="disabled" />
<label for="test8">Brown</label>
</p>
</form>
<div class="row" >
<pre><code class="language-markup col s12">
<form action="#">
<p>
<input type="checkbox" id="test5" />
<label for="test5">Red</label>
</p>
<p>
<input type="checkbox" id="test6" checked="checked" />
<label for="test6">Yellow</label>
</p>
<p>
<input type="checkbox" id="test7" checked="checked" disabled="disabled" />
<label for="test7">Green</label>
</p>
<p>
<input type="checkbox" id="test8" disabled="disabled" />
<label for="test8">Brown</label>
</p>
</form>
</code></pre>
</div>
</div>
<div id="range" class="section scrollspy">
<h4>Range</h4>
<p>Add a range slider for values with a wide range. This one is set to be a number between 0 and 100.</p>
<form action="#">
<p class="range-field">
<input type="range" name="points" min="0" max="100">
</p>
</form>
<div class="row" >
<pre><code class="language-markup col s12">
<form action="#">
<p class="range-field">
<input type="range" id="test5" />
<label for="test5">Red</label>
</p>
</form>
</code></pre>
</div>
</div>
<div id="date-picker" class="section scrollspy">
<h4>Date Picker</h4>
<p>We use a modified version of pickadate.js to create a materialized date picker. Test it out below! </p>
<label for="birthdate">Birthdate</label>
<input id="birthdate" type="text" class="datepicker"></input>
<div class="row" >
<pre><code class="language-markup col s12">
<input type="date" class="datepicker"></div>
</code></pre>
</div>
</div>
</div>
</div>
<!-- Buttons -->
<div id="tab5" class="row">
<div class="col hide-on-small-only m3 l2">
<div style="height: 1px;">
<ul class="section table-of-contents">
<li><a href="#raised">Raised</a></li>
<li><a href="#floating">Floating</a></li>
<li><a href="#flat">Flat</a></li>
<li><a href="#large">Large</a></li>
<li><a href="#disabled">Disabled</a></li>
</ul>
</div>
</div>
<div class="col s12 m9 l10">
<h2 class="header">Buttons</h2>
<p class="caption">
There are 3 main button types described in material design. The raised button is a standard button that signify actions and seek to give depth to a mostly flat page. The floating circular action button is meant for very important functions. Flat buttons are usually used within elements that already have depth like cards or modals.
</p>
<div id="raised" class="section scrollspy">
<h4 class="col s12">Raised</h4>
<div class="col s12">
<a class="waves-effect waves-light btn">button</a>
<a class="waves-effect waves-light btn"><i class="mdi-file-cloud"></i>button</a>
<a class="waves-effect waves-light btn"><i class="mdi-file-cloud right"></i>button</a>
<pre><code class="language-markup col s12">
<a href="" class="waves-effect waves-light btn">Stuff</a>
<a class="waves-effect waves-light btn"><i class="mdi-file-cloud"></i>button</a>
<a class="waves-effect waves-light btn"><i class="mdi-file-cloud right"></i>button</a>
</code></pre>
</div>
</div>
<div id="floating" class="section scrollspy">
<h4>Floating</h4>
<a class="btn-floating"><i class="mdi-content-add"></i></a>
<pre><code class="language-markup col s12">
<a href="" class="button floating"><i class="mdi-content-add"></i></a>
</code></pre>
</div>
<div id="flat" class="section scrollspy">
<h4>Flat</h4>
<a class="waves-effect waves-button btn-flat">Button</a>
<pre><code class="language-markup col s12">
<a href="" class="waves-effect button flat">Button</a>
</code></pre>
</div>
<div id="large" class="section scrollspy">
<h3 class="header">Additional Styles</h3>
<h4>Large</h4>
<p>This button has a larger height for buttons that need more attention.</p>
<a class="waves-effect waves-light btn-large">Button</a>
<a class="waves-effect waves-light btn-large"><i class="mdi-file-cloud"></i>button</a>
<a class="waves-effect waves-light btn-large"><i class="mdi-file-cloud right"></i>button</a>
<pre><code class="language-markup col s12">
<a href="" class="waves-effect waves-light btn-large">Button</a>
<a class="waves-effect waves-light btn-large"><i class="mdi-file-cloud"></i>button</a>
<a class="waves-effect waves-light btn-large"><i class="mdi-file-cloud right"></i>button</a>
</code></pre>
</div>
<div id="disabled" class="section scrollspy">
<h4>Disabled</h4>
<p>This style can be applied to all button types</p>
<a class="btn-large disabled">Button</a>
<a class="btn disabled">Button</a>
<a class="btn-flat disabled">Button</a>
<a class="btn-floating disabled"><i class="mdi-content-add"></i></a>
<pre><code class="language-markup col s12">
<a class="btn-large disabled">Button</a>
<a class="btn disabled">Button</a>
<a class="btn-flat disabled">Button</a>
<a class="btn-floating disabled"><i class="mdi-content-add"></i></a>
</code></pre>
</div>
</div>
</div>
<div id="tab6" class="row">
<!-- Navbar Section -->
<div class="col hide-on-small-only m3 l2">
<div style="height: 1px;">
<ul class="section table-of-contents">
<li><a href="#right">Right Aligned</a></li>
<li><a href="#left">Left Aligned</a></li>
<li><a href="#mobile-collapse">Mobile Collapse</a></li>
</ul>
</div>
</div>
<div class="col s12 m9 l10">
<div id="right" class="section scrollspy">
<h2 class="header">Navbar</h2>
<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>Right Aligned Links</h4>
<p>To right align your navbar links, just add a <code class="language-markup">right</code> class to your <code class="language-markup"><ul></code> that contains them.</p>
<nav>
<div class="nav-wrapper">
<div class="col s12">
<a href="#!" class="brand-logo">Logo</a>
<a class="button-collapse" href="#" data-activates="nav-mobile"><i class="mdi-navigation-menu"></i></a>
<ul class="right side-nav">
<li><a href="sass.html">Sass</a></li>
<li><a href="components.html">Components</a></li>
<li><a href="javascript.html">JavaScript</a></li>
</ul>
</div>
</div>
</nav><br>
<div class="row">
<pre><code class="language-markup col s12">
<nav>
<div class="nav-wrapper">
<a href="#" class="brand-logo">Logo</a>
<ul id="nav-mobile" class="right side-nav">
<li><a href="sass.html">Sass</a></li>
<li><a href="components.html">Components</a></li>
<li><a href="javascript.html">JavaScript</a></li>
</ul>
<a class="button-collapse" href="#" data-activates="nav-mobile"><i class="mdi-navigation-menu"></i></a>
</div>
</nav>
</code></pre>
</div>
</div>
<div id="left" class="section scrollspy">
<h4>Left Aligned Links</h4>
<p>To left align your navbar links, just add a <code class="language-markup">left</code> class to your <code class="language-markup"><ul></code> that contains them.</p>
<nav>
<div class="nav-wrapper">
<div class="col s12">
<a href="#!" class="brand-logo right">Logo</a>
<a class="button-collapse" href="#" data-activates="nav-mobile"><i class="mdi-navigation-menu"></i></a>
<ul class="left side-nav">
<li><a href="sass.html">Sass</a></li>
<li><a href="components.html">Components</a></li>
<li><a href="javascript.html">JavaScript</a></li>
</ul>
</div>
</div>
</nav><br>
<div class="row">
<pre><code class="language-markup col s12">
<nav>
<div class="nav-wrapper">
<a href="#" class="brand-logo right">Logo</a>
<ul id="nav-mobile" class="left side-nav">
<li><a href="sass.html">Sass</a></li>
<li><a href="components.html">Components</a></li>
<li><a href="javascript.html">JavaScript</a></li>
</ul>
<a class="button-collapse" href="#" data-activates="nav-mobile"><i class="mdi-navigation-menu"></i></a>
</div>
</nav>
</code></pre>
</div>
</div>
<div id="mobile-collapse" class="section scrollspy">
<h4>Mobile Collapse Button</h4>
<nav>
<div class="nav-wrapper">
<div class="col s12">
<a href="#!" class="brand-logo right">Logo</a>
<a style="display: block !important;" class="button-collapse" href="#" data-activates="nav-mobile"><i class="mdi-navigation-menu"></i></a>
</div>
</div>
</nav>
<br>
<p>When your nav bar is resized, you will see that the links on the right turn into a hamburger icon <i class="mdi-navigation-menu"></i></p>
<p>If you already included the code for the button collapse as we did in the examples above, all you have to do now is place this code in your page's <code class="language-javascript">$( document ).ready(function(){})</code> code. This example below assumes you have not modified the classes in the above example. In the case that you have, just change the jQuery selector in the line below to match it.</p>
<pre><code class="language-javascript">
$(".button-collapse").sideNav();
</code></pre>
</div>
</div>
</div>
<!-- Content tab -->
<div id="tab7" class="row">
<div class="col hide-on-small-only m3 l2">
<div style="height: 1px;">
<ul class="section table-of-contents">
<li><a href="#cards">Cards</a></li>
<li><a href="#preloader">Preloader</a></li>
<li><a href="#collections">Collections</a></li>
<li><a href="#tables">Tables</a></li>
</ul>
</div>
</div>
<div class=" col s12 m9 l10">
<!-- Cards Section-->
<div id="cards" class="section scrollspy">
<h2 class="header">Cards</h2>
<p class="caption">Cards are a convenient means of displaying content composed of different types of objects. They’re also well-suited for presenting similar objects whose size or supported actions can vary considerably, like photos with captions of variable length.</p>
<div class="row">
<div class="col s12 m6">
<div class="card blue-grey darken-1">
<div class="card-image">
<span class="card-title">Card Title</span>
</div>
<div class="card-content white-text">
<span class="card-title">Card Title</span>
<p>I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively. <br>
</div>
<div class="card-action">
<a href="#">This is a link</a>
<a href='#'>This is a link</a>
</div>
</div>
</div>
<div class="col s12 m6">
<div class="card">
<div class="card-image">
<img src="images/sample-1.jpg">
<span class="card-title">Card Title</span>
</div>
<div class="card-content">
<p>I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.</p>
</div>
<div class="card-action">
<a href="#">This is a link</a>
<a href='#'>This is a link</a>
</div>
</div>
</div>
<div class="col s12">
<div class="card small">
<div class="card-image">
<img src="images/sample-1.jpg">
<span class="card-title">Card Title</span>
</div>
<div class="card-content">
<p>I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.</p>
</div>
<div class="card-action">
<a href="#">This is a link</a>
<a href='#'>This is a link</a>
</div>
</div>
</div>
</div>
<div class="row">
<pre><code class="language-markup col s12">
<div class="col s12 m6">
<div class="card blue-grey darken-1">
<div class="card-image">
<span class="card-title">Card Title</span>
</div>
<div class="card-content white-text">
<span class="card-title">Card Title</span>
<p>I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively. <br>
</div>
<div class="card-action">
<a href="#">This is a link</a>
<a href='#'>This is a link</a>
</div>
</div>
</div>
<div class="col s12 m6">
<div class="card">
<div class="card-image">
<img src="images/sample-1.jpg">
<span class="card-title">Card Title</span>
</div>
<div class="card-content">
<p>I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.</p>
</div>
<div class="card-action">
<a href="#">This is a link</a>
<a href='#'>This is a link</a>
</div>
</div>
</div>
<div class="col s12">
<div class="card small">
<div class="card-image">
<img src="images/sample-1.jpg">
<span class="card-title">Card Title</span>
</div>
<div class="card-content">
<p>I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.</p>
</div>
<div class="card-action">
<a href="#">This is a link</a>
<a href='#'>This is a link</a>
</div>
</div>
</div>
</code></pre>
</div>
<h4>Card Panel</h4>
<p>For a simpler card with less markup, try using a card panel which just has padding and a shadow effect</p>
<div class="row">
<div class="col s12 m4">
<div class="card-panel teal"> <span class="white-text">I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.</span>
</div>
</div>
<pre class="col s12"><code class="language-markup">
<div class="row">
<div class="col s12 m4">
<div class="card-panel teal"> <span class="white-text">I am a very simple card. I am good at containing small bits of information. I am convenient because I require little markup to use effectively.</span>
</div>
</div>
</div>
</code></pre>
</div>
</div>
<!-- Preloader Section-->
<div id="preloader" class="section scrollspy">
<h2 class="header">Preloader</h2>
<p class="caption">If you have content that will take a long time to load, you should give the user feedback. In this case we have an animated preloader.</p>
<div class="row">
<div class="col s12 m4 center">
<div class="preloader-wrapper big active">
<div class="spinner-layer spinner-blue">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
<div class="spinner-layer spinner-red">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
<div class="spinner-layer spinner-yellow">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
<div class="spinner-layer spinner-green">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
</div>
</div>
<div class="col s12 m4 center">
<div class="preloader-wrapper active">
<div class="spinner-layer spinner-blue">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
<div class="spinner-layer spinner-red">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
<div class="spinner-layer spinner-yellow">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
<div class="spinner-layer spinner-green">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
</div>
</div>
<div class="col s12 m4 center">
<div class="preloader-wrapper small active">
<div class="spinner-layer spinner-blue">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
<div class="spinner-layer spinner-red">
<div class="circle-clipper left">
<div class="circle"></div>
</div><div class="gap-patch">
<div class="circle"></div>
</div><div class="circle-clipper right">
<div class="circle"></div>
</div>
</div>
<div class="spinner-layer spinner-yellow">
<div class="circle-clipper left">
<div class="circle"></div>