-
Notifications
You must be signed in to change notification settings - Fork 124
/
index.html
943 lines (884 loc) · 37.4 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
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
<!DOCTYPE html>
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Almost Flat UI</title>
<link rel="stylesheet" href="stylesheets/normalize.css" />
<link rel="stylesheet" href="stylesheets/app.css" />
<script src="bower_components/modernizr/modernizr.js"></script>
</head>
<body>
<nav role="navigation" class="navigation">
<div class="navigation-container">
<ul class="logo-navigation">
<li>
<a href="/" title="Amit Gaur">Ag</a>
</li>
</ul>
<ul class="main-navigation">
<li><a href="/about/">About</a></li>
<li><a href="/contact">Contact</a></li>
</ul>
</div>
</nav>
<div class="row">
<div class="large-12 columns text-center" style="padding-top:60px;padding-bottom: 30px;">
<img src="images/almost_flat_ui.png" alt="">
<h1 style="font-size: 60px;">Almost Flat UI <br>
<small>Based on Foundation Framework</small>
</h1>
<div class="row">
<div class="large-6 columns">
<!-- AddThis Button BEGIN -->
<div class="addthis_toolbox addthis_default_style ">
<a class="addthis_button_facebook_like" fb:like:layout="button_count"></a>
<a class="addthis_button_tweet"></a>
<a class="addthis_button_pinterest_pinit"></a>
<a class="addthis_counter addthis_pill_style"></a>
</div>
<script type="text/javascript" src="//s7.addthis.com/js/300/addthis_widget.js#pubid=ra-4e76d47101fc0d8a"></script>
<!-- AddThis Button END -->
</div>
<div class="large-6 columns text-right">
<iframe src="http://ghbtns.com/github-btn.html?user=websymphony&repo=almost-flat-ui&type=watch&count=true"
allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
<iframe src="http://ghbtns.com/github-btn.html?user=websymphony&repo=almost-flat-ui&type=fork&count=true"
allowtransparency="true" frameborder="0" scrolling="0" width="110" height="20"></iframe>
</div>
<hr>
</div>
</div>
</div>
<div class="row">
<div class="large-9 push-3 columns">
<h4 class="text-center">Navigation</h4>
<hr>
<div class="row" id="doc-pagination">
<div class="large-12 columns">
<h5>Pagination</h5>
<ul class="pagination">
<li class="arrow unavailable"><a href="">«</a></li>
<li class="current"><a href="">1</a></li>
<li><a href="">2</a></li>
<li><a href="">3</a></li>
<li><a href="">4</a></li>
<li class="unavailable"><a href="">…</a></li>
<li><a href="">12</a></li>
<li><a href="">13</a></li>
<li class="arrow"><a href="">»</a></li>
</ul>
</div>
</div>
<hr>
<div class="row" id="doc-sidenav">
<div class="large-12 columns">
<h5>Side Nav</h5>
<div class="row">
<div class="large-4 columns end">
<ul class="side-nav">
<li class="active"><a href="#">Link 1</a></li>
<li><a href="#">Link 2</a></li>
<li class="divider"></li>
<li><a href="#">Link 3</a></li>
<li><a href="#">Link 4</a></li>
</ul>
</div>
</div>
</div>
</div>
<hr>
<div class="row" id="doc-subnav">
<div class="large-12 columns">
<h5>Sub Nav</h5>
<dl class="sub-nav">
<dt>Filter:</dt>
<dd class="active"><a href="#">All</a></dd>
<dd><a href="#">Active</a></dd>
<dd><a href="#">Pending</a></dd>
<dd><a href="#">Suspended</a></dd>
</dl>
</div>
</div>
<hr>
<div class="row" id="doc-topbar">
<div class="large-12 columns">
<h5>Top Bar</h5>
<nav class="top-bar" data-topbar>
<ul class="title-area">
<!-- Title Area -->
<li class="name">
<h1><a href="#">Top Bar</a></h1>
</li>
<!-- Remove the class "menu-icon" to get rid of menu icon. Take out "Menu" to just have icon alone -->
<li class="toggle-topbar menu-icon"><a href="#"><span>Menu</span></a></li>
</ul>
<section class="top-bar-section">
<ul class="left">
<li class="divider"></li>
<li class="has-dropdown"><a href="#">Item 1</a>
<ul class="dropdown"><li class="title back js-generated"><h5><a href="#">« Back</a></h5></li>
<li><label>Level One</label></li>
<li><a href="#">Sub-item 1</a></li>
<li><a href="#">Sub-item 2</a></li>
<li class="divider"></li>
<li><a href="#">Sub-item 3</a></li>
<li class="has-dropdown"><a href="#">Sub-item 4</a>
<ul class="dropdown"><li class="title back js-generated"><h5><a href="#">« Back</a></h5></li>
<li><label>Level Two</label></li>
<li class="has-dropdown"><a href="#">Sub-item 1</a>
<ul class="dropdown"><li class="title back js-generated"><h5><a href="#">« Back</a></h5></li>
<li><label>Level Three</label></li>
<li class="has-dropdown"><a href="#">Sub-item 1</a>
<ul class="dropdown"><li class="title back js-generated"><h5><a href="#">« Back</a></h5></li>
<li><label>Level Four</label></li>
<li><a href="#">Sub-item 1</a></li>
</ul>
</li>
<li><a href="#">Sub-item 2</a></li>
<li><a href="#">Sub-item 3</a></li>
<li class="divider"></li>
<li><a href="#">Sub-item 4</a></li>
</ul>
</li>
<li><a href="#">Sub-item 2</a></li>
<li><a href="#">Sub-item 3</a></li>
<li><a href="#">Sub-item 4</a>
</li></ul>
</li>
<li><a href="#">Sub-item 5</a></li>
</ul>
</li>
<li class="divider"></li>
</ul>
<!-- Right Nav Section -->
<ul class="right">
<li class="divider hide-for-small"></li>
<li><a href="#">Messages <span class="top-bar-unread">3</span></a></li>
<li class="divider hide-for-small"></li>
<li><a href="#">Item 2</a></li>
</ul>
</section></nav>
</div>
</div>
<hr>
<div class="row" id="doc-breadcrumbs">
<div class="large-12 columns">
<h5>Breadcrumbs</h5>
<ul class="breadcrumbs">
<li><a href="#">Home</a></li>
<li><a href="#">Features</a></li>
<li class="unavailable"><a href="#">Gene Splicing</a></li>
<li class="current"><a href="#">Cloning</a></li>
</ul>
</div>
</div>
<hr>
<div class="row">
<div class="large-12 columns">
<h4 class="text-center">Buttons</h4>
<hr>
<h5> Almost Flat Buttons</h5>
<table id="doc-almost-flat-buttons">
<thead>
<tr>
<th style="width:30%">Button</th>
<th style="width:30%">class=""</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><button type="button" class="button primary">Primary</button></td>
<td><code>button primary</code></td>
<td>Provides extra visual weight and identifies the primary action in a set of buttons</td>
</tr>
<tr>
<td><button type="button" class="button primary-dark">Primary Dark</button></td>
<td><code>button primary-dark</code></td>
<td>Provides extra visual weight and identifies the primary action in a set of buttons</td>
</tr>
<tr>
<td><button type="button" class="button secondary">Secondary</button></td>
<td><code>button secondary</code></td>
<td>Standard gray button with gradient</td>
</tr>
<tr>
<td><button type="button" class="button highlight">Highlight</button></td>
<td><code>button highlight</code></td>
<td>To highlight some extraordinary action</td>
</tr>
<tr>
<td><button type="button" class="button highlight-dark">Highlight Dark</button></td>
<td><code>button highlight-dark</code></td>
<td>To highlight some extraordinary action</td>
</tr>
<tr>
<td><button type="button" class="button info">Info</button></td>
<td><code>button info</code></td>
<td>Used as an alternative to the default styles</td>
</tr>
<tr>
<td><button type="button" class="button info-dark">Info Dark</button></td>
<td><code>button info-dark</code></td>
<td>Used as an alternative to the default styles</td>
</tr>
<tr>
<td><button type="button" class="button success">Success</button></td>
<td><code>button success</code></td>
<td>Indicates a successful or positive action</td>
</tr>
<tr>
<td><button type="button" class="button success-dark">Success Dark</button></td>
<td><code>button success-dark</code></td>
<td>Indicates a successful or positive action</td>
</tr>
<tr>
<td><button type="button" class="button success-darker">Success Darker</button></td>
<td><code>button success-darker</code></td>
<td>Indicates a successful or positive action</td>
</tr>
<tr>
<td><button type="button" class="button success-darkest">Success Darkest</button></td>
<td><code>button success-darkest</code></td>
<td>Indicates a successful or positive action</td>
</tr>
<tr>
<td><button type="button" class="button warning">Warning</button></td>
<td><code>button warning</code></td>
<td>Indicates caution should be taken with this action</td>
</tr>
<tr>
<td><button type="button" class="button warning-dark">Warning Dark</button></td>
<td><code>button warning-dark</code></td>
<td>Indicates caution should be taken with this action</td>
</tr>
<tr>
<td><button type="button" class="button alert">Alert</button></td>
<td><code>button alert</code></td>
<td>Indicates a dangerous or potentially negative action</td>
</tr>
<tr>
<td><button type="button" class="button alert-dark">Alert Dark</button></td>
<td><code>button alert-dark</code></td>
<td>Indicates a dangerous or potentially negative action</td>
</tr>
<tr>
<td><button type="button" class="button inverse">Inverse</button></td>
<td><code>button inverse</code></td>
<td>Alternate dark gray button, not tied to a semantic action or use</td>
</tr>
<tr>
<td><button type="button" class="button inverse-dark">Inverse Dark</button></td>
<td><code>button inverse-dark</code></td>
<td>Alternate dark gray button, not tied to a semantic action or use</td>
</tr>
</tbody>
</table>
<hr>
<h5>Different Sizes</h5>
<table>
<thead>
<tr>
<th style="width:20%">Button</th>
<th style="width:20%">class=""</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><button type="button" class="button tiny">Tiny</button></td>
<td><code>button tiny</code></td>
<td>Tiny Button</td>
</tr>
<tr>
<td><button type="button" class="button small">Small</button></td>
<td><code>button small</code></td>
<td>Small Button</td>
</tr>
<tr>
<td><button type="button" class="button">Regular</button></td>
<td><code>button</code></td>
<td>Regular Button</td>
</tr>
<tr>
<td><button type="button" class="button large">Large</button></td>
<td><code>button large</code></td>
<td>Large Button</td>
</tr>
</tbody>
</table>
<hr>
<h5>Different Types</h5>
<table>
<thead>
<tr>
<th style="width:20%">Button</th>
<th style="width:20%">class=""</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td><button type="button" class="button radius">Radius</button></td>
<td><code>button radius</code></td>
<td>Radius Button</td>
</tr>
<tr>
<td><button type="button" class="button round">Round</button></td>
<td><code>button round</code></td>
<td>Round Button</td>
</tr>
<tr>
<td><button type="button" class="button disabled">Disabled</button></td>
<td><code>button disabled</code></td>
<td>Disabled Button</td>
</tr>
</tbody>
</table>
<hr>
<div class="row" id="doc-almost-flat-button-groups">
<div class="large-12 columns">
<h5>Almost Flat Buttons Groups</h5>
<ul class="button-group">
<li><a href="#" class="small button">Button 1</a></li>
<li><a href="#" class="small button">Button 2</a></li>
<li><a href="#" class="small button">Button 3</a></li>
</ul>
<ul class="button-group radius">
<li><a href="#" class="button secondary">Button 1</a></li>
<li><a href="#" class="button secondary">Button 2</a></li>
<li><a href="#" class="button secondary">Button 3</a></li>
<li><a href="#" class="button secondary">Button 4</a></li>
</ul>
<ul class="button-group round even-3">
<li><a href="#" class="button alert">Button 1</a></li>
<li><a href="#" class="button alert">Button 2</a></li>
<li><a href="#" class="button alert">Button 3</a></li>
</ul>
<ul class="button-group round even-3">
<li><input type="submit" class="button success" value="Button 1"></li>
<li><input type="submit" class="button success" value="Button 2"></li>
<li><input type="submit" class="button success" value="Button 3"></li>
</ul>
</div>
</div>
</div>
</div><!-- Buttons End-->
<hr>
<div class="row" id="doc-forms">
<div class="large-12 columns">
<h3 class="text-center">Forms</h3>
<hr>
<form class="custom">
<fieldset>
<legend>Fieldset</legend>
<div class="row">
<div class="large-12 columns">
<label>Input Label</label>
<input type="text" placeholder="large-12.columns">
</div>
</div>
<div class="row">
<div class="large-4 columns">
<label>Input Label</label>
<input type="text" placeholder="large-4.columns">
</div>
<div class="large-4 columns">
<div class="row collapse">
<label>Input Label</label>
<div class="small-3 columns">
<span class="prefix">http://</span>
</div>
<div class="small-9 columns">
<input type="text" placeholder="small-9.columns">
</div>
</div>
</div>
<div class="large-4 columns">
<div class="row collapse">
<label>Input Label</label>
<div class="small-9 columns">
<input type="text" placeholder="small-9.columns">
</div>
<div class="small-3 columns">
<span class="postfix">.com</span>
</div>
</div>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<label>Textarea Label</label>
<textarea placeholder="small-12.columns"></textarea>
</div>
</div>
<div class="row">
<div class="large-6 columns error">
<label class="error">Error</label>
<input type="text" class="error">
<small class="error">Invalid entry</small>
</div>
<div class="large-6 columns success">
<label>Success</label>
<input type="text">
<small>Valid entry</small>
</div>
</div>
</fieldset>
</form>
</div>
</div>
<hr>
<div class="row">
<div class="large-12 columns">
<h4 class="text-center">Typography</h4>
<hr>
<div class="row" id="doc-type">
<h5>Type</h5>
<div class="large-12 columns">
<h1>h1. This is a very large header.</h1>
<h2>h2. This is a large header.</h2>
<h3>h3. This is a medium header.</h3>
<h4>h4. This is a moderate header.</h4>
<h5>h5. This is a small header. h1.</h5>
<h6>h6. This is a tiny header. h1.</h6>
<hr>
<h1 class="subheader">h1.subheader</h1>
<h2 class="subheader">h2.subheader</h2>
<h3 class="subheader">h3.subheader</h3>
<h4 class="subheader">h4.subheader</h4>
<h5 class="subheader">h5.subheader</h5>
<h6 class="subheader">h6.subheader</h6>
<hr>
<h1>h1. <small>Small segment header.</small></h1>
<h2>h2. <small>Small segment header.</small></h2>
<h3>h3. <small>Small segment header.</small></h3>
<h4>h4. <small>Small segment header.</small></h4>
<h5>h5. <small>Small segment header.</small></h5>
<h6>h6. <small>Small segment header.</small></h6>
<hr>
<p>This is a paragraph. Paragraphs are preset with a font size, line height and spacing to match the overall vertical rhythm. To show what a paragraph looks like this needs a little more content so, did you know that there are storms occurring on Jupiter that are larger than the Earth? Pretty cool. Wrap <code><strong></code> around type to <strong>make it bold!</strong>. You can also use <code><em></code> to <em>italicize your words</em>.</p>
<hr>
<h6>Links</h6>
<p>Links are very standard, and the <a href="http://www.youtube.com/watch?v=oHg5SJYRHA0">color is preset</a> to the Foundation primary color.</p>
<hr>
<h6>Lists</h6>
<p>Lists are helpful for, well, lists of things.</p>
<div class="row">
<div class="large-4 columns">
<h6>ul.disc</h6>
<ul class="disc">
<li>List item with a much longer description or more content.</li>
<li>List item</li>
<li>List item
<ul>
<li>Nested List Item</li>
<li>Nested List Item</li>
<li>Nested List Item</li>
</ul>
</li>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ul>
</div>
<div class="large-4 columns">
<h6>ul.circle</h6>
<ul class="circle">
<li>List item with a much longer description or more content.</li>
<li>List item</li>
<li>List item
<ul>
<li>Nested List Item</li>
<li>Nested List Item</li>
<li>Nested List Item</li>
</ul>
</li>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ul>
</div>
<div class="large-4 columns">
<h6>ul.square</h6>
<ul class="square">
<li>List item with a much longer description or more content.</li>
<li>List item</li>
<li>List item
<ul>
<li>Nested List Item</li>
<li>Nested List Item</li>
<li>Nested List Item</li>
</ul>
</li>
<li>List item</li>
<li>List item</li>
<li>List item</li>
</ul>
</div>
</div>
<div class="row">
<div class="large-4 columns">
<h6>Ordered Lists</h6>
<ol>
<li>List Item 1</li>
<li>List Item 2
<ol>
<li>Nested List Item</li>
<li>Nested List Item</li>
<li>Nested List Item</li>
</ol>
</li>
<li>List Item 3</li>
</ol>
</div>
<div class="large-8 columns">
<h6>Definition Lists</h6>
<dl>
<dt>Definition Title</dt>
<dd>Definition Cras justo odio, dapibus ac facilisis in, egestas eget quam. Nullam id dolor id nibh ultricies vehicula ut id elit.</dd>
</dl>
</div>
</div>
<hr>
<a name="blockquotes"></a>
<h6>Blockquotes</h6>
<p>Sometimes other people say smart things, and you may want to mention that through a blockquote callout. We've got you covered.</p>
<blockquote>I do not fear computers. I fear the lack of them. Maecenas faucibus mollis interdum. Aenean lacinia bibendum nulla sed consectetur.<cite>Isaac Asimov</cite></blockquote>
<hr>
<h6>V-Cards</h6>
<p>Here's a handy microformat-friendly list to <em>address</em> all your needs.</p>
<ul class="vcard">
<li class="fn">Gaius Baltar</li>
<li class="street-address">123 Colonial Ave.</li>
<li class="locality">Caprica City</li>
<li><span class="state">Caprica</span>, <span class="zip">12345</span></li>
<li class="email"><a href="#">[email protected]</a></li>
</ul>
</div>
</div>
<hr>
<div class="row" id="doc-labels">
<div class="large-12 columns">
<h5>Labels</h5>
<p>
<span class="label">Regular Label</span><br>
<span class="radius secondary label">Radius Secondary Label</span><br>
<span class="round alert label">Round Alert Label</span><br>
<span class="success label">Success Label</span><br>
</p>
</div>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="large-12 columns">
<h4 class="text-center">CSS Components</h4>
<hr>
<div class="row" id="doc-alert-boxes">
<div class="large-12 columns">
<h5>Alert Boxes</h5>
<div data-alert="" class="alert-box radius">
This is a standard alert (div.alert-box).
<a href="" class="close">×</a>
</div>
<div data-alert="" class="alert-box success">
This is a success alert (div.alert-box.success).
<a href="" class="close">×</a>
</div>
<div data-alert="" class="alert-box alert round">
This is an alert (div.alert-box.alert.round).
<a href="" class="close">×</a>
</div>
<div data-alert="" class="alert-box secondary">
This is a secondary alert (div.alert-box.secondary).
<a href="" class="close">×</a>
</div>
</div>
</div>
<hr>
<div class="row" id="doc-panels">
<div class="large-12 columns">
<h5>Panels</h5>
<div class="row">
<div class="large-6 columns">
<div class="panel">
<h5>This is a regular panel.</h5>
<p>It has an easy to override visual style, and is appropriately subdued.</p>
</div>
</div>
<div class="large-6 columns">
<div class="panel callout radius">
<h5>This is a callout panel.</h5>
<p>It's a little ostentatious, but useful for important content.</p>
</div>
</div>
</div>
</div>
</div>
<hr>
<div class="row" id="doc-pricing-tables">
<div class="large-12 columns">
<h5>Pricing Table</h5>
<div class="row">
<div class="large-6 columns large-centered">
<ul class="pricing-table">
<li class="title">Standard</li>
<li class="price">$99.99</li>
<li class="description">An awesome description</li>
<li class="bullet-item">1 Database</li>
<li class="bullet-item">5GB Storage</li>
<li class="bullet-item">20 Users</li>
<li class="cta-button"><a class="button success radius" href="#">Buy Now</a></li>
</ul>
</div>
</div>
</div>
</div>
<hr>
<div class="row" id="doc-progress-bars">
<div class="large-12 columns">
<h5>Progress Bars</h5>
<div class="progress large-6"><span class="meter" style="width: 40%"></span></div>
<div class="radius progress success large-8"><span class="meter" style="width: 80%"></span></div>
<div class="nice round progress alert large-10"><span class="meter" style="width: 30%"></span></div>
<div class="nice secondary progress"><span class="meter" style="width: 50%"></span></div>
</div>
</div>
<hr>
<div class="row" id="doc-tables">
<div class="large-12 columns">
<h5>Tables</h5>
<table>
<thead>
<tr>
<th width="200">Table Header</th>
<th>Table Header</th>
<th width="150">Table Header</th>
<th width="150">Table Header</th>
</tr>
</thead>
<tbody>
<tr>
<td>Content Goes Here</td>
<td>This is longer content Donec id elit non mi porta gravida at eget metus.</td>
<td>Content Goes Here</td>
<td>Content Goes Here</td>
</tr>
<tr>
<td>Content Goes Here</td>
<td>This is longer Content Goes Here Donec id elit non mi porta gravida at eget metus.</td>
<td>Content Goes Here</td>
<td>Content Goes Here</td>
</tr>
<tr>
<td>Content Goes Here</td>
<td>This is longer Content Goes Here Donec id elit non mi porta gravida at eget metus.</td>
<td>Content Goes Here</td>
<td>Content Goes Here</td>
</tr>
</tbody>
</table>
</div>
</div>
<hr>
<div class="row" id="doc-thumbnails">
<div class="large-12 columns">
<h5>Thumbnails</h5>
<a class="th" href="http://lorempixel.com/400/200"><img src="http://lorempixel.com/400/200"></a>
</div>
</div>
<hr>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<h4 class="text-center">Javascript</h4>
<hr>
<div class="row" id="doc-clearing">
<div class="large-12 columns">
<h5>Clearing</h5>
<ul class="clearing-thumbs" data-clearing>
<li><a class="th" href="http://lorempixel.com/800/600"><img src="http://lorempixel.com/200/100" data-caption="caption here..."></a></li>
<li><a class="th" href="http://lorempixel.com/800/600"><img src="http://lorempixel.com/200/100" data-caption="caption 2 here..."></a></li>
<li><a class="th" href="http://lorempixel.com/800/600"><img src="http://lorempixel.com/200/100" data-caption="caption 3 here..."></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="row" id="doc-content">
<div class="large-12 columns">
<br>
<h5>Content</h5>
<hr>
<div class="row">
<div class="large-12 columns">
<h6>Horizontal Tabs</h6>
<dl class="tabs" data-tab>
<dd class='active'><a href="#htab-panel1">Tab 1</a></dd>
<dd><a href="#htab-panel2">Tab 2</a></dd>
<dd><a href="#htab-panel3">Tab 3</a></dd>
<dd>
</dl>
<div class="tabs-content">
<div class="content active" id="htab-panel1">
<p>First panel content goes here...</p>
</div>
<div class="content" id="htab-panel2">
<p>Second panel content goes here...</p>
</div>
<div class="content" id="htab-panel3">
<p>Third panel content goes here...</p>
</div>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="large-12 columns">
<h6>Vertical Tabs</h6>
<dl class="tabs vertical" data-tab>
<dd class='active'><a href="#vtab-panel1">Tab 1</a></dd>
<dd><a href="#vtab-panel2">Tab 2</a></dd>
<dd><a href="#vtab-panel3">Tab 3</a></dd>
<dd>
</dl>
<div class="tabs-content vertical">
<div class="content active" id="vtab-panel1">
<p>First panel content goes here...</p>
</div>
<div class="content" id="vtab-panel2">
<p>Second panel content goes here...</p>
</div>
<div class="content" id="vtab-panel3">
<p>Third panel content goes here...</p>
</div>
</div>
</div>
</div>
<hr>
<div class="row">
<div class="large-12 columns">
<h6>Accordion</h6>
<dl class="accordion" data-accordion>
<dd>
<a href="#accordion-panel1">Panel 1</a>
<div class="content" id='accordion-panel1'>
<p>Content of Panel 1.</p>
</div>
</dd>
<dd>
<a href="#accordion-panel2">Panel 2</a>
<div class="content" id="accordion-panel2">
<p>Content of Panel 2.</p>
</div>
</dd>
</dl>
</div>
</div>
</div>
</div>
<hr>
<div class="row" id="doc-tooltips">
<div class="large-12 columns">
<h5>Tooltips</h5>
<p><span data-tooltip="" class="has-tip tip-top noradius" title="I'm on the top and have tons and tons of content in me.">"Tip-top" (hehe)</span>, <span data-tooltip="left" class="has-tip tip-left" title="I'm on the left!">"tip-left"</span>, or <span data-tooltip="right" class="has-tip tip-right" title="I'm on the right!">"tip-right"</span></p>
</div>
</div>
</div>
<div class="large-3 pull-9 columns">
<dl class="docs accordion" data-accordion>
<dd class='active'>
<a href="#panel-nav">Navigation</a>
<div class="content active" id="panel-nav">
<ul class="side-nav">
<li><a class="" href="#doc-pagination">Pagination</a></li>
<li><a class="" href="#doc-sidenav">Side Nav</a></li>
<li><a class="" href="#doc-subnav">Sub Nav</a></li>
<li><a class="" href="#doc-topbar">Top Bar</a></li>
<li><a class="" href="#doc-breadcrumbs">Breadcrumbs</a></li>
</ul>
</div>
</dd>
<dd>
<a href="#panel-buttons">Buttons</a>
<div class="content" id='panel-buttons' >
<ul class="side-nav">
<li><a class="" href="#doc-almost-flat-buttons">Almost Flat Buttons</a></li>
<li><a class="" href="#doc-almost-flat-button-groups">Almost Flat Button Groups</a></li>
</ul>
</div>
</dd>
<dd>
<a href="#panel-forms">Forms</a>
<div class="content" id="panel-forms">
<ul class="side-nav">
<li><a class="" href="#doc-forms">Forms</a></li>
</ul>
</div>
</dd>
<dd>
<a href="#panel-typography">Typography</a>
<div class="content" id="panel-typography">
<ul class="side-nav">
<li><a class="" href="#doc-type">Type</a></li>
<li><a class="" href="#doc-labels">Labels</a></li>
</ul>
</div>
</dd>
<dd>
<a href="#panel-css-components">CSS Components</a>
<div class="content" id="panel-css-components">
<ul class="side-nav">
<li><a class="" href="#doc-alert-boxes">Alert Boxes</a></li>
<li><a class="" href="#doc-panels">Panels</a></li>
<li><a class="" href="#doc-pricing-tables">Pricing Tables</a></li>
<li><a class="" href="#doc-progress-bars">Progress Bars</a></li>
<li><a class="" href="#doc-tables">Tables</a></li>
<li><a class="" href="#doc-thumbnails">Thumbnails</a></li>
</ul>
</div>
</dd>
<dd>
<a href="#panel-javascript">Javascript</a>
<div class="content" id="panel-javascript">
<ul class="side-nav">
<li><a class="" href="#doc-clearing">Clearing</a></li>
<li><a class="" href="#doc-content">Content</a></li>
<li><a class="" href="#doc-tooltips">Tooltips</a></li>
</ul>
</div>
</dd>
</dl>
<div class="row">
<div class="large-12 columns text-center">
<br><br>
<a href="http://github.com/websymphony/almost-flat-ui" class="button alert radius">Download</a>
<hr>
<br>
<div class="text-left lead">
Need a Stylish Resume? <br><br>
Try my other project: <strong><a href="https://hipcv.com" target="_blank" rel="">HipCV</a></strong>
</div>
</div>
</div>
</div>
</div>
<script src="javascripts/vendor/jquery.js"></script>
<script src="javascripts/vendor/jquery.cookie.js"></script>
<script src="bower_components/foundation/js/foundation.min.js"></script>
<script type="application/javascript">
var doNotTrack = false;
if (!doNotTrack) {
window.ga=window.ga||function(){(ga.q=ga.q||[]).push(arguments)};ga.l=+new Date;
ga('create', 'UA-180258293-1', 'auto');
ga('send', 'pageview');
}
</script>
<script async src='https://www.google-analytics.com/analytics.js'></script>
</body>
</html>