-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
1192 lines (937 loc) · 48.5 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
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Amphibious | Simply Elegant HTML5/CSS3 Responsive Front End Development Kit | 1.5.5 December 1, 2015</title>
<meta name="description" content="A.mphibio.us is a responsive design tool for rapid development has a familiar sixteen column, lightweight 960 grid as its base, but elegantly scales down to downsized browser windows">
<meta name="keywords" content="css3, html5, responsive, web, design, mobile layout, responsive design">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0">
<link rel="canonical" href="http://a.mphibio.us/index.html" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="/images/touch/apple-touch-icon-144x144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="/images/touch/apple-touch-icon-114x114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="/images/touch/apple-touch-icon-72x72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="/images/touch/apple-touch-icon-57x57-precomposed.png">
<link rel="apple-touch-icon" href="/apple-touch-icon-precomposed.png">
<!-- iPhone SPLASHSCREEN-->
<link href="/images/startup/startup.png" media="(device-width: 320px)" rel="apple-touch-startup-image">
<!-- iPhone (Retina) SPLASHSCREEN-->
<link href="/images/startup/startup-retina.png" media="(device-width: 320px) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<!-- iPad (portrait) SPLASHSCREEN-->
<link href="/images/startup/startup-tablet-portrait.png" media="(device-width: 768px) and (orientation: portrait)" rel="apple-touch-startup-image">
<!-- iPad (landscape) SPLASHSCREEN-->
<link href="/images/startup/startup-tablet-landscape.png" media="(device-width: 768px) and (orientation: landscape)" rel="apple-touch-startup-image">
<!-- iPad (Retina, portrait) SPLASHSCREEN-->
<link href="/images/startup/startup-tablet-portrait-retina.png" media="(device-width: 1536px) and (orientation: portrait) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<!-- iPad (Retina, landscape) SPLASHSCREEN-->
<link href="/images/startup/startup-tablet-landscape-retina.png" media="(device-width: 1536px) and (orientation: landscape) and (-webkit-device-pixel-ratio: 2)" rel="apple-touch-startup-image">
<!-- Tile icon for Win8 (144x144 + tile color) -->
<meta name="msapplication-TileImage" content="/images/touch/apple-touch-icon-144x144-precomposed.png">
<meta name="msapplication-TileColor" content="#000000">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="cleartype" content="on">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="A.mphibio.us">
<!--
<link rel="stylesheet" href="src/css/sequencejs-theme.sliding-horizontal-parallax.css">
<link rel="stylesheet" href="src/css/flexslider.css">
<link rel="stylesheet" href="css/jquery.fancybox.css">
-->
<link rel="stylesheet" href="css/a.mphibio.us.min.css">
<link rel="stylesheet" href="css/a.mphibio.us.skin.css">
<script src="/js/js/modernizr-2.6.2.min.js"></script>
<script src="/js/js/prefixfree.min.js"></script>
<!-- This script prevents links from opening in Mobile Safari. https://gist.github.com/1042026 -->
<script>(function(a,b,c){if(c in b&&b[c]){var d,e=a.location,f=/^(a|html)$/i;a.addEventListener("click",function(a){d=a.target;while(!f.test(d.nodeName))d=d.parentNode;"href"in d&&(d.href.indexOf("http")||~d.href.indexOf(e.host))&&(a.preventDefault(),e.href=d.href)},!1)}})(document,window.navigator,"standalone")</script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="content">
<img src="images/a.mphobio.us.icon.png" alt="a.mphobio.us.icon" width="256" height="256" class="a r t" />
<div id="intro">
<div class="container" style="padding-top:30px;">
<div class="sixteen col dmb">
<header id="top">
<hgroup>
<h1 id="project_title" class="rmb"><span class="adot">a.</span>mphibio.us</h1>
<p id="tagline" class="rmt">Built by designers who code.</p>
</hgroup>
</header>
</div>
<section class="row">
<article id="intro_left" class="col eight">
<header>
<h2>The Simple, Elegant, Responsive, Front End Rapid Development Kit.</h2>
</header>
<p class="intro whtt">A.mphibio.us adapts to the way you work, it allows you to develop and design your concepts within a browser faster, with less effort.
Its adoptable set of shorthand classes dramatically speed up your prototyping process.</p>
<footer class="row mr">
<a class="button grn" href="http://a.mphibio.us/a.mphibio.us.rdk.zip" title="The Rapid Design Kit includes evrything you need to get you up and running right away">Get the <abbr title="Rapid Application Development Kit">RDK</abbr><span class="icon-github hml"></span></a>
<a class="button blu" href="https://github.com/Treefrog/A.mphibio.us/" title="The project files include all the source files and documentation and examples allowing you to customize and control the toolkit with your own libraries">Visit the Project<span class="icon-download hml"></span></a>
</footer>
</article>
<aside id="intro_right" class="col eight">
<!--
<blockquote class="l">
<p>“Form follows function – that has been misunderstood. Form and function should be one, joined in a sacred union.”</p>
<cite class="r"><span class="author fn">Frank Lloyd Wright</span>, Architect, <span class="date">circa. 1906</span></cite>
</blockquote>
-->
<iframe width="460" height="340" src="https://www.youtube.com/embed/2aRUy_Fc1nk" frameborder="0" allowfullscreen></iframe>
<a class="dotted whtt more set" href="#what_is_it"><span class="icon whtt" style="font-size:6em;">⬇</span></a>
</aside>
</section>
</div> <!--.container-->
</div> <!--#intro-->
<section id="what_is_it">
<div id="sequence-theme">
<div id="sequence">
<img class="prev" src="images/prev.png" alt="Previous" />
<img class="next" src="images/next.png" alt="Next" />
<ul>
<li class="animate-in">
<div class="info">
<h2>Responsive Design from Mobile Up</h2>
<p>A.mphibio.us loves mobile. Using the Sequence.js touchable responsive slider with advanced CSS3 transitions, A.mphibio.us elegantly scales down to adapt to displays on laptops, tablets and mobile phones, in both landscape and portrait mode.</p>
</p>
</div>
<img class="sky" src="images/bg-clouds.png" alt="Blue Sky" />
<img class="balloon" src="images/iphone.png" alt="Balloon" />
</li>
<li>
<div class="info">
<h2>Fast Start => Rapid Development</h2>
<p>A.mphibio.us is a rapid development tool. It empowers you to employ CSS best practices right out of the gate.</p>
<p>A.mphibio.us is based on an established grid architecture that makes mobile compatibility easy. It has a logical file structure and basic UI elements, lightly styled forms, buttons, tabs and more. It uses simple, intelligible code. Plus, customizable shorthand classes make actual coding a snap.</p>
</div>
<img class="sky" src="images/bg-clouds.png" alt="Blue Sky" />
<img class="aeroplane" src="images/code.png" alt="Aeroplane" />
</li>
<li>
<div class="info">
<h2>Design Agnostic</h2>
<p>A.mphibio.us is not intended for use as a UI framework. It doesn't have a default theme. It doesn't require extensive jQuery or advanced programming knowledge. It leverages the “cascade” of CSS. In other words, you don’t have to struggle with your framework to get your project to look the way you want it.
A.mphibio.us uses lightweight, basic styles as its foundation. It is ready to adapt to whatever your design methods are.
</p>
</div>
<img class="sky" src="images/bg-clouds.png" alt="Blue Sky" />
<img class="kite" src="images/agnostic.png" alt="Agnostic" />
</li>
</ul>
</div>
</div>
<div class="container">
<div class="col six push_ten">
<a class="dotted more set" href="#how_its_made"><span class="icon" style="font-size:6em;">⬇</span></a>
</div>
</div>
</section> <!--#what_is_it-->
<section id="how_its_made">
<div class="container">
<aside id="wrp">
<div class="bg"></div>
<div class="bg2"></div>
<div class="bg3"></div>
<div class="bg4"></div>
</aside>
<article id="more_than_a_grid" class="col six push_ten mt">
<header>
<h2>More than a Grid</h2>
</header>
<p>The a.mphibio.us framework is built on the HTML5 Boilerplate includes a series of standard ui elements, commonly used layout templates, sample design templates,
and much more...</p>
<p>Intended for rapid application development it includes easy to read code blocks, helpfull comments and plenty of shorthand classes for fewer keystrokes.</p>
<footer>
<h4>Did you Say jQuery?</h4>
<p>We've adopted plenty of your favourite jQuery functions and plug-ins (included in the '/src/js' library), example galleries using
of isotope plugin, responsive js slide show, <a href="http://www.sequencejs.com" title="Sequence.js">Sequence.js</a></p>
<a class="dotted more" href="#gallery"><span class="icon" style="font-size:6em;">⬇</span></a>
</footer>
</article>
</div> <!--.story-->
</section> <!--#how_its_made-->
<section id="gallery" class="row">
<div class="container focus">
<header>
<h1>Showcase: Built on the A.mphibio.us framework</h1>
</header>
<nav class="row">
<dl id="filters" class="option-set filter_nav cfx" data-option-key="filter">
<dt><a href="#filter" data-option-value="*" class="selected"><span class="icon-ccw"></span> All</a></dt>
<dd><a href="#filter" data-option-value=".webapp">Webapps</a></dd>
<dd><a href="#filter" data-option-value=".website">Websites</a></dd>
<dd><a href="#filter" data-option-value=".tablet">Tablet</a></dd>
<dd><a href="#filter" data-option-value=".mobile">Mobile</a></dd>
</dl>
</nav>
<div id="container" class="row">
<div id="treefrog" class="element website tablet mobile" data-category="website">
<img src="images/showcase/treefrog/treefrog-home.png" alt="The Briars" class="swg" />
<div class="overlay">
<div class="slug">
<h4 class="title">Treefrog</h4>
<p class="desc">Newmarket Web Design and Development</p>
<span class="number hide">41</span>
</div>
<div class="row a b l r">
<a class="fancybox"
href="images/showcase/treefrog/treefrog-home.png"
data-fancybox-group="treefrog-gallery"
title='<h4>Treefrog</h4>Newmarket Web Design and Development'>
<span class="icon-search"></span> View Project</a>
<a class="right ar"
href="https://treefrog.ca"
target="_blank"
title="Treefrog: Newmarket Web Design and Development">
Visit Site <span class="icon-export"></span></a>
</div>
</div>
<!--//
Additional Images
//-->
<a class="fancybox"
href="images/showcase/treefrog/treefrog-home-full.png"
data-fancybox-group="treefrog-gallery"
title='<h4>Treefrog</h4>Newmarket Web Design and Development'></a>
<a class="fancybox"
href="images/showcase/treefrog/treefrog-case-study-full.png"
data-fancybox-group="treefrog-gallery"
title='<h4>Treefrog</h4>Newmarket Web Design and Development'></a>
<a class="fancybox"
href="images/showcase/treefrog/treefrog-article-full.png"
data-fancybox-group="treefrog-gallery"
title='<h4>Treefrog</h4>Newmarket Web Design and Development'></a>
<a class="fancybox"
href="images/showcase/treefrog/treefrog-article-full-hc.png"
data-fancybox-group="treefrog-gallery"
title='<h4>Treefrog</h4>Newmarket Web Design and Development'></a>
<a class="fancybox"
href="images/showcase/treefrog/treefrog-home-tablet-landscape.png"
data-fancybox-group="treefrog-gallery"
title='<h4>Treefrog</h4>Newmarket Web Design and Development'></a>
<a class="fancybox"
href="images/showcase/treefrog/treefrog-frogs-tablet-landscape.png"
data-fancybox-group="treefrog-gallery"
title='<h4>Treefrog</h4>Newmarket Web Design and Development'></a>
<a class="fancybox"
href="images/showcase/treefrog/treefrog-frogs-tablet-portrait.png"
data-fancybox-group="treefrog-gallery"
title='<h4>Treefrog</h4>Newmarket Web Design and Development'></a>
<a class="fancybox"
href="images/showcase/treefrog/treefrog-frogs-open-tablet-portrait.png"
data-fancybox-group="treefrog-gallery"
title='<h4>Treefrog</h4>Newmarket Web Design and Development'></a>
<a class="fancybox"
href="images/showcase/treefrog/treefrog-article-tablet-portrait.png"
data-fancybox-group="treefrog-gallery"
title='<h4>Treefrog</h4>Newmarket Web Design and Development'></a>
<a class="fancybox"
href="images/showcase/treefrog/treefrog-home-mobile.png"
data-fancybox-group="treefrog-gallery"
title='<h4>Treefrog</h4>Newmarket Web Design and Development'></a>
<a class="fancybox"
href="images/showcase/treefrog/treefrog-home-mobile-nav.png"
data-fancybox-group="treefrog-gallery"
title='<h4>Treefrog</h4>Newmarket Web Design and Development'></a>
<a class="fancybox"
href="images/showcase/treefrog/treefrog-home-mobile-sidebar.png"
data-fancybox-group="treefrog-gallery"
title='<h4>Treefrog</h4>Newmarket Web Design and Development'></a>
</div><!--// /.element //-->
<div id="mckenna" class="element website tablet mobile" data-category="website">
<img src="images/showcase/mckenna/mckenna-home.png" alt="The Briars" class="swg" />
<div class="overlay">
<div class="slug">
<h4 class="title">McKenna Logistics</h4>
<p class="desc">The Canadian Logistics Experts</p>
<span class="number hide">41</span>
</div>
<div class="row a b l r">
<a class="fancybox"
href="images/showcase/mckenna/mckenna-home.png"
data-fancybox-group="mckenna-gallery"
title='<h4>McKenna Logistics</h4>The Canadian Logistics Experts'>
<span class="icon-search"></span> View Project</a>
<a class="right ar hide"
href="http://mckennalogistics.ca"
target="_blank"
title="McKenna Logistics: Newmarket Web Design and Development">
Visit Site <span class="icon-export"></span></a>
</div>
</div>
<!--//
Additional Images
//-->
<a class="fancybox"
href="images/showcase/mckenna/mckenna-home-full.png"
data-fancybox-group="mckenna-gallery"
title='<h4>McKenna Logistics</h4>The Canadian Logistics Experts'></a>
<a class="fancybox"
href="images/showcase/mckenna/mckenna-inner-full.png"
data-fancybox-group="mckenna-gallery"
title='<h4>McKenna Logistics</h4>The Canadian Logistics Experts'></a>
<a class="fancybox"
href="images/showcase/mckenna/mckenna-articles-full.png"
data-fancybox-group="mckenna-gallery"
title='<h4>McKenna Logistics</h4>The Canadian Logistics Experts'></a>
<a class="fancybox"
href="images/showcase/mckenna/mckenna-tablet-home-landscape.png"
data-fancybox-group="mckenna-gallery"
title='<h4>McKenna Logistics</h4>The Canadian Logistics Experts'></a>
<a class="fancybox"
href="images/showcase/mckenna/mckenna-tablet-inner-landscape.png"
data-fancybox-group="mckenna-gallery"
title='<h4>McKenna Logistics</h4>The Canadian Logistics Experts'></a>
<a class="fancybox"
href="images/showcase/mckenna/mckenna-tablet-inner-landscape-menu.png"
data-fancybox-group="mckenna-gallery"
title='<h4>McKenna Logistics</h4>The Canadian Logistics Experts'></a>
<a class="fancybox"
href="images/showcase/mckenna/mckenna-tablet-home-portrait.png"
data-fancybox-group="mckenna-gallery"
title='<h4>McKenna Logistics</h4>The Canadian Logistics Experts'></a>
<a class="fancybox"
href="images/showcase/mckenna/mckenna-tablet-inner-portrait.png"
data-fancybox-group="mckenna-gallery"
title='<h4>McKenna Logistics</h4>The Canadian Logistics Experts'></a>
</div><!--// /.element //-->
<div id="briars" class="element website tablet mobile" data-category="website">
<img src="images/showcase/briars/briars-home-desktop-view.png" alt="The Briars" class="swg" />
<div class="overlay">
<div class="slug">
<h4 class="title">The Briars</h4>
<p class="desc">Ontario Resort and Spa Vacations Near Toronto</p>
<span class="number hide">41</span>
</div>
<div class="row a b l r">
<a class="fancybox"
href="images/showcase/briars/briars-home-desktop-view.png"
data-fancybox-group="briars-gallery"
title='<h4>The Briars</h4>Ontario Resort and Spa Vacations'>
<span class="icon-search"></span> View Project</a>
<a class="right ar"
href="http://briars.ca"
target="_blank"
title="Ontario Resort and Spa Vacations">
Visit Site <span class="icon-export"></span></a>
</div>
</div>
<!--//
Additional Images
//-->
<a class="fancybox"
href="images/showcase/briars/briars-home-desktop-full-view.png"
data-fancybox-group="briars-gallery"
title='<h4>The Briars</h4>Ontario Resort and Spa Vacations'></a>
<a class="fancybox"
href="images/showcase/briars/briars-home-tablet-landscape-view.png"
data-fancybox-group="briars-gallery"
title='<h4>The Briars</h4>Ontario Resort and Spa Vacations'></a>
<a class="fancybox"
href="images/showcase/briars/briars-home-tablet-portrait-view.png"
data-fancybox-group="briars-gallery"
title='<h4>The Briars</h4>Ontario Resort and Spa Vacations'></a>
<a class="fancybox"
href="images/showcase/briars/briars-home-mobile-portrait-view.png"
data-fancybox-group="briars-gallery"
title='<h4>The Briars</h4>Ontario Resort and Spa Vacations'></a>
<a class="fancybox"
href="images/showcase/briars/briars-home-mobile-portrait-full-view.png"
data-fancybox-group="briars-gallery"
title='<h4>The Briars</h4>Ontario Resort and Spa Vacations'></a>
</div><!--// /.element //-->
<div id="lux" class="element webapp tablet" data-category="webapp">
<img src="images/showcase/lux/lux-server-dashboard.png" alt="LUX" class="swg" />
<div class="overlay">
<div class="slug">
<h4 class="title">LUX</h4>
<p class="desc"><span class="media">Lasso 9.3 Server Admin</span></p>
<span class="number hide">9</span>
</div>
<div class="row a b l r">
<a class="fancybox"
href="images/showcase/lux/lux-server-dashboard.png"
data-fancybox-group="lux-gallery"
title='<h4>LUX</h4>Lasso 9.3 Server Dashboard'>
<span class="icon-search"></span> View Project</a>
</div>
</div>
<!--//
Additional Images
//-->
<a class="fancybox"
href="images/showcase/lux/lux-instance-dashboard.png"
data-fancybox-group="lux-gallery"
title='<h4>LUX</h4>Manage Datasources'></a>
<a class="fancybox"
href="images/showcase/lux/lux-instance-datasources-database-tables.png"
data-fancybox-group="lux-gallery"
title='<h4>LUX</h4>Manage Datasources'></a>
<a class="fancybox"
href="images/showcase/lux/lux-help-lassosoft-support.png"
data-fancybox-group="lux-gallery"
title='<h4>LUX</h4>Manage Datasources'></a>
<a class="fancybox"
href="images/showcase/lux/spitfire_admin_panel.png"
data-fancybox-group="lux-gallery"
title='<h4>LUX</h4>Spitfire Admin Panel'></a>
</div><!--// /.element //-->
<div id="mister" class="element website tablet mobile" data-category="website">
<img src="images/showcase/mister/mister-transmission-desktop-home.png" alt="Mister Transmission" class="swg" />
<div class="overlay">
<div class="slug">
<h4 class="title">Mister Transmission</h4>
<p class="desc">Transmission and Technology Experts</p>
<span class="number hide">41</span>
</div>
<div class="row a b l r">
<a class="fancybox"
href="images/showcase/mister/mister-transmission-desktop-home.png"
data-fancybox-group="mister-gallery"
title='<h4>Mister Transmission</h4>Transmission and Technology Experts'>
<span class="icon-search"></span> View Project</a>
<a class="right ar"
href="http://mistertransmission.com"
target="_blank"
title="Mister Transmission: Transmission and Technology Experts">
Visit Site <span class="icon-export"></span></a>
</div>
</div>
<!--//
Additional Images
//-->
<a class="fancybox"
href="images/showcase/mister/mister-transmission-desktop-home-full.png"
data-fancybox-group="mister-gallery"
title='<h4>Mister Transmission</h4>Transmission and Technology Experts'></a>
<a class="fancybox"
href="images/showcase/mister/mister-transmission-desktop-franchise.png"
data-fancybox-group="mister-gallery"
title='<h4>Mister Transmission</h4>Transmission and Technology Experts'></a>
<a class="fancybox"
href="images/showcase/mister/mister-transmission-desktop-location.png"
data-fancybox-group="mister-gallery"
title='<h4>Mister Transmission</h4>Transmission and Technology Experts'></a>
<a class="fancybox"
href="images/showcase/mister/mister-transmission-tablet-landscape.png"
data-fancybox-group="mister-gallery"
title='<h4>Mister Transmission</h4>Transmission and Technology Experts'></a>
<a class="fancybox"
href="images/showcase/mister/mister-transmission-tablet-portrait.png"
data-fancybox-group="mister-gallery"
title='<h4>Mister Transmission</h4>Transmission and Technology Experts'></a>
<a class="fancybox"
href="images/showcase/mister/mister-transmission-home-mobile-portrait-view.png"
data-fancybox-group="mister-gallery"
title='<h4>Mister Transmission</h4>Transmission and Technology Experts'></a>
<a class="fancybox"
href="images/showcase/mister/mister-transmission-home-mobile-portrait-full-view.png"
data-fancybox-group="mister-gallery"
title='<h4>Mister Transmission</h4>Transmission and Technology Experts'></a>
</div><!--// /.element //-->
<div id="mergini" class="element webapp tablet" data-category="webapp">
<img src="images/showcase/mergini/mergini_home.png" alt="LUX" class="swg" />
<div class="overlay">
<div class="slug">
<h4 class="title">Mergini</h4>
<p class="desc"><span class="media">Corporate Dashboard Application</span></p>
<span class="number hide">9</span>
</div>
<div class="row a b l r">
<a class="fancybox" href="images/showcase/mergini/mergini_home.png"
data-fancybox-group="mergini-gallery"
title='<h4>Mergini</h4>Corporate Dashboard Application'>
<span class="icon-search"></span> View Project</a>
<a class="right ar"
href="http://mergini.com"
target="_blank"
title="Get Mergini">
Visit Site <span class="icon-export"></span></a>
</div>
</div>
<!--//
Additional Images
//-->
<a class="fancybox"
href="images/showcase/mergini/mergini_landing_page.png"
data-fancybox-group="mergini-gallery"
title='<h4>Mergini</h4>Corporate Dashboard Application'></a>
<a class="fancybox"
href="images/showcase/mergini/mergini_staff_profiles.png"
data-fancybox-group="mergini-gallery"
title='<h4>Mergini</h4>Corporate Dashboard Application'></a>
<a class="fancybox"
href="images/showcase/mergini/mergini_user_profile_edit.png"
data-fancybox-group="mergini-gallery"
title='<h4>Mergini</h4>Corporate Dashboard Application'></a>
<a class="fancybox"
href="images/showcase/mergini/mergini_user_profile_photo.png"
data-fancybox-group="mergini-gallery"
title='<h4>Mergini</h4>Corporate Dashboard Application'></a>
<a class="fancybox"
href="images/showcase/mergini/mergini_admin_table.png"
data-fancybox-group="mergini-gallery"
title='<h4>Mergini</h4>Corporate Dashboard Application'></a>
<a class="fancybox"
href="images/showcase/mergini/mergini_rank_tracker_dashboard.png"
data-fancybox-group="mergini-gallery"
title='<h4>Mergini</h4>Rank Tracker Application'></a>
<a class="fancybox"
href="images/showcase/mergini/mergini_rank_tracker_amphipious_snap.png"
data-fancybox-group="mergini-gallery"
title='<h4>Mergini</h4>Corporate Dashboard Application'></a>
</div><!--// /.element //-->
<div id="righttime" class="element website tablet mobile" data-category="website">
<img src="images/showcase/righttime/right-time-home.png" alt="Right Time: Heating and Air Conditioning Canada" class="swg" />
<div class="overlay">
<div class="slug">
<h4 class="title">Right Time</h4>
<p class="desc">Heating and Air Conditioning Canada</p>
<span class="number hide">41</span>
</div>
<div class="row a b l r">
<a class="fancybox"
href="images/showcase/righttime/right-time-home.png"
data-fancybox-group="righttime-gallery"
title='<h4>Right Time</h4>Heating and Air Conditioning Canada'>
<span class="icon-search"></span> View Project</a>
<a class="right ar"
href="http://www.right-time.ca"
target="_blank"
title="Right Time: Heating and Air Conditioning Canada">
Visit Site <span class="icon-export"></span></a>
</div>
</div>
<!--//
Additional Images
//-->
<a class="fancybox"
href="images/showcase/righttime/boonstra-home.png"
data-fancybox-group="righttime-gallery"
title='<h4>Right Time</h4>Heating and Air Conditioning Canada'></a>
<a class="fancybox"
href="images/showcase/righttime/boonstra-home-full.png"
data-fancybox-group="righttime-gallery"
title='<h4>Right Time</h4>Heating and Air Conditioning Canada'></a>
<a class="fancybox"
href="images/showcase/righttime/boonstra-internal-full.png"
data-fancybox-group="righttime-gallery"
title='<h4>Right Time</h4>Heating and Air Conditioning Canada'></a>
<a class="fancybox"
href="images/showcase/righttime/boonstra-home-ipad-landscape.png"
data-fancybox-group="righttime-gallery"
title='<h4>Right Time</h4>Heating and Air Conditioning Canada'></a>
<a class="fancybox"
href="images/showcase/righttime/boonstra-home-ipad-portrait.png"
data-fancybox-group="righttime-gallery"
title='<h4>Right Time</h4>Heating and Air Conditioning Canada'></a>
<a class="fancybox"
href="images/showcase/righttime/boonstra-home-mobile.png"
data-fancybox-group="righttime-gallery"
title='<h4>Right Time</h4>Heating and Air Conditioning Canada'></a>
<a class="fancybox"
href="images/showcase/righttime/boonstra-menu-mobile.png"
data-fancybox-group="righttime-gallery"
title='<h4>Right Time</h4>Heating and Air Conditioning Canada'></a>
<a class="fancybox"
href="images/showcase/righttime/boonstra-home-mobile-full.png"
data-fancybox-group="righttime-gallery"
title='<h4>Right Time</h4>Heating and Air Conditioning Canada'></a>
</div><!--// /.element //-->
<div id="blueworld" class="element webapp" data-category="webapp">
<img src="images/showcase/blueworld/blueworld-home.png" alt="LUX" class="swg" />
<div class="overlay">
<div class="slug">
<h4 class="title">Blueworld</h4>
<p class="desc"><span class="media">Website wireframing made easy</span></p>
<span class="number hide">9</span>
</div>
<div class="row a b l r">
<a class="fancybox"
href="images/showcase/blueworld/blueworld-home.png"
data-fancybox-group="blueworld-gallery"
title='<h4>Blueworld</h4>Website wireframing made easy'>
<span class="icon-search"></span> View Project</a>
<a class="right ar"
href="http://blueworld.com"
target="_blank"
title="Blueworld: Responsive website wireframing made easy">
Visit Site <span class="icon-export"></span></a>
</div>
</div>
<!--//
Additional Images
//-->
<a class="fancybox"
href="images/showcase/blueworld/blueworld-home-full.png"
data-fancybox-group="blueworld-gallery"
title='<h4>Blueworld</h4>Website wireframing made easy'></a>
<a class="fancybox"
href="images/showcase/blueworld/blueworld-login.png"
data-fancybox-group="blueworld-gallery"
title='<h4>Blueworld</h4>Website wireframing made easy'></a>
<a class="fancybox"
href="images/showcase/blueworld/blueworld-dashboard-grid-view.png"
data-fancybox-group="blueworld-gallery"
title='<h4>Blueworld</h4>Project Dashboard Grid View'></a>
<a class="fancybox"
href="images/showcase/blueworld/blueworld-dashboard-listview.png"
data-fancybox-group="blueworld-gallery"
title='<h4>Blueworld</h4>Project Dashboard List View'></a>
<a class="fancybox"
href="images/showcase/blueworld/blueworld-project.png"
data-fancybox-group="blueworld-gallery"
title='<h4>Blueworld</h4>Project Page'></a>
<a class="fancybox"
href="images/showcase/blueworld/blueworld-tour.png"
data-fancybox-group="blueworld-gallery"
title='<h4>Blueworld</h4>Product tour'></a>
<a class="fancybox"
href="images/showcase/blueworld/blueworld-content-tools.png"
data-fancybox-group="blueworld-gallery"
title='<h4>Blueworld</h4>Drag and drop content tools'></a>
<a class="fancybox"
href="images/showcase/blueworld/blueworld-content-setting.png"
data-fancybox-group="blueworld-gallery"
title='<h4>Blueworld</h4>Drag and drop content setting panel'></a>
<a class="fancybox"
href="images/showcase/blueworld/blueworld-viewport-resizer.png"
data-fancybox-group="blueworld-gallery"
title='<h4>Blueworld</h4>Builtin viewport resizing'></a>
<a class="fancybox"
href="images/showcase/blueworld/blueworld-admin.png"
data-fancybox-group="blueworld-gallery"
title='<h4>Blueworld</h4>Simple admin interface'></a>
</div><!--// /.element //-->
<div id="cookie-it-up" class="element website" data-category="website">
<img src="images/showcase/cookieitup/cookie-it-up-home.png" alt="Cookie It Up | Wholesome Quality Cookies | Natural Ingredients " class="swg" />
<div class="overlay">
<div class="slug">
<h4 class="title">Cookie It Up</h4>
<p class="desc">Wholesome Quality Cookies | Natural Ingredients</p>
<span class="number hide">41</span>
</div>
<div class="row a b l r">
<a class="fancybox"
href="images/showcase/cookieitup/cookie-it-up-home.png"
data-fancybox-group="cookie-it-up-gallery"
title='<h4>Cookie It Up</h4>Wholesome Quality Cookies | Natural Ingredients'>
<span class="icon-search"></span> View Project</a>
<a class="right ar"
href="http://www.cookieitup.com"
target="_blank"
title="Cookie It Up | Wholesome Quality Cookies | Natural Ingredients">
Visit Site <span class="icon-export"></span></a>
</div>
</div>
<!--//
Additional Images
//-->
<a class="fancybox"
href="images/showcase/cookieitup/cookie-it-up-home-full.png"
data-fancybox-group="cookie-it-up-gallery"
title='<h4>Cookie It Up</h4>Wholesome Quality Cookies | Natural Ingredients'></a>
<a class="fancybox"
href="images/showcase/cookieitup/cookie-it-up-cookies.png"
data-fancybox-group="cookie-it-up-gallery"
title='<h4>Cookie It Up</h4>Wholesome Quality Cookies | Natural Ingredients'></a>
<a class="fancybox"
href="images/showcase/cookieitup/cookie-it-up-wholesale.png"
data-fancybox-group="cookie-it-up-gallery"
title='<h4>Cookie It Up</h4>Wholesome Quality Cookies | Natural Ingredients'></a>
<a class="fancybox"
href="images/showcase/cookieitup/cookie-it-up-contact.png"
data-fancybox-group="cookie-it-up-gallery"
title='<h4>Cookie It Up</h4>Wholesome Quality Cookies | Natural Ingredients'></a>
</div><!--// /.element //-->
</div>
</div>
</section>
<section id="evolution" class="row">
<div class="container focus">
<h1 class="rmb">The E.volution<sub class="meta uc">Includes E.very<span class="orgt">one</span></sub></h1>
<div class="col ten first dgryt">
<p>A.mphibio.us is <em>not adverse to change</em>. In fact, A.mphibio.us thrives on input from developers who put it to use. You’re openly encouraged to build on top of it. If you have input about A.mphibio.us or any of its functionality, feel free to add your changes and comments to our public repository on Github. You’re invited to become part of the active community and add features and improvements as you see fit. Just ask for a pull request.</p>
<p>We’ll give you access to a rapid development kit to get started with your project. The kit contains some basic layout grids, some base typography and styles, and a collection of sample themes that you can play with.</p>
<p><strong>You don’t have to be an absolute genius to start working with the best of CSS practices.</strong></p>
</div>
<div class="col six">
<a class="button blu" href="https://github.com/Treefrog/A.mphibio.us/archive/master.zip" title="Download A.mphibio.us Release Candidate 1.0 (.zip )">Download the Project<span class="icon-github hml"></span></a>
<a class="button grn" href="/a.mphibio.us.rdk.zip" title="Download A.mphibio.us Release Candidate 1.0 (.zip )">Get the <abbr title="Rapid Application Development Kit">RDK</abbr><span class="icon-download hml"></span></a>
<br>
<a class="dotted more set" href="#colophon"><span class="icon" style="font-size:6em;">⬇</span></a>
</div>
</div>
</section>
<section id="colophon">
<div class="container">
<div class="col ten">
<article class="cfx">
<header>
<h2 class="whtt">How this all got started...</h2>
</header>
<p>As Part of the Research and Development Team at <a href="http://www.lassosft.com/">LasoSoft Inc.</a>/<a href="http://www.treefrog.ca/">Treefrog Inc.</a> We get to work on some really cool projects, keep watch of trends emerging technologies, in general keep tabs on the best of breed on <a href="http://twitter.com/#!/search/%23responsive">responsive web development</a> and <a href="http://twitter.com/#!/search/%23ux">user experience</a>. When one day while discussing a particular methodolgy used on a project with another developer when... DING!</p>
<p>We spend the first few hours of every project doing the exact same things...</p>
<ol class="alpha">
<li class="rmb">Grab the latest jQuery</li>
<li class="rmb">Grab the latest HTML5 Boilerplate</li>
<li class="rmb">Grab the current flavour of grid960</li>
<li class="rmb">Grab my latest project for my reusable styles</li>
<li class="rmb">Grab jQuery Plug-ins as required</li>
<li class="rmb">Spend two days fighting with competing classes and variables</li>
<li class="rmb">Now I can start buuilding...</li>
</ol>
<p>This aims to resolve some of that initial pain and help sets standards to build with.</p>
</article>
</div>
<div class="col six">
<article class="cfx">
<header>
<h2 class="whtt">Credits</h2>
</header>
<p>This project makes use of some code and scripts made by others:</p>
<ol class="roman">
<li><a href="http://flesler.blogspot.com/2007/10/jqueryscrollto.html" title="jQuery ScrollTo">HTML5 Boiler Plate</a></li>
<li>Feature detection by none other than <a href="http://modernizr.com/">Modernizr</a></li>
<li>The fabulous <a href="http://flesler.blogspot.ca/2009/03/jquerylocalscroll-127-released.html">jQuery LocalScroll</a> and <a href="http://flesler.blogspot.ca/2009/05/jqueryscrollto-142-released.html" title="jQuery ScrollTo">jQuery Scroll To</a> by Ariel Flesler</li>
<li><a href="http://www.sequencejs.com" title="Sequence.js">Sequence.js</a> and <a href="https://github.com/IanLunn/jQuery-Parallax" title="Parallax.js">parallax.js</a> for parallax effects and a whole lot more!</li>
<li><a href="http://www.subtlepatterns.com/" title="Background Textures">Subtle Patterns</a> | Free textures for your next web project</li>
<li><a href="http://downloads.dvq.co.nz" title="Large Background Images">Hand Crafted Wood</a> | <sub>DESIGNED BY DIGITAL VISIONS QUEENSTOWN</sub></li>
<li>A.mphibio.us base styles inspired by the work of <a href="https://twitter.com/jezhawk">Jen Hawkyard</a></li>
</ol>
</article>
</div>
<div class="col sixteen">
<footer id="amp_footer" class="row">
<p><a href="/"><span class="icon-amphibious hmr"></span></a> <a href="http://www.lassosoft.com/"><span class="icon-lassosoft hmr"></span></a> <a href="http://www.mergini.com/"><span class="icon-mergini hmr"></span></a> Curated by Clive Moore, at <a href="http://www.treefrog.ca"><span class="icon-treefrog hmr"></span>Treefrog Inc.</a> <strong>Twitter</strong>: <a href="http://www.twitter.com/cliveMoore" title="Follow Clive on Twitter">@cliveMoore</a> <a href="/sitemap.html"><span class="icon-flow-tree"></span> Sitemap</a></p>
</footer>
</div>
</div> <!--.story-->
</div> <!--#fifth-->
</div><!-- //#content -->
<div id="mainnav" class="f t l r">
<!--// WTF?
.f.t.l.r == .fixed .top .left .right
// .left (.l) or .right (.r) no longer floats left/right respectively
when used in combination with the fixed or the absolute class
they inherit different properties the result is
postion:fixed;top:0;left:0;right:0;
//-->
<div class="container">
<nav>
<ul class="horizontal branded">
<li class="active"><a href="/docs/../index.html#intro" class="hpl">a.mphibio.us</a>
<ul>
<li><a href="/docs/../index.html#what_is_it">What is A.mphibio.us</a></li>
<li><a href="/docs/../index.html#how_its_made">What is it made of?</a></li>
<!-- <li><a href="/docs/../index.html#slides">Flexslider Slideshows</a></li> -->
<li><a href="/docs/../index.html#gallery">A.mphibio.us Showcase</a></li>
<li><a href="/docs/../index.html#evolution">The E.volution of A.mphibio.us</a></li>
<li><a href="/docs/../index.html#colophon">The A.mphibio.us Colophon</a></li>
</ul>
</li>
<li><a href="/docs/foundation.html">Foundation</a>
<ul>
<li><a href="/docs/foundation.html#core">Core</a></li>
<li><a href="/docs/foundation.html#grid">Symantic Grid</a></li>
<li><a href="/docs/foundation.html#responsive_col">Responsive Columns</a></li>
<li><a href="/docs/foundation.html#fluid_col">Fluid Columns</a></li>
<!--// <li><a href="/docs/foundation.html#padded_col">Padded Columns</a></li> //-->
<li><a href="/docs/foundation.html#golden_section">Golden ratio grids</a></li>
<li><a href="/docs/foundation.html#push_pull">Source Ordering</a></li>
<li><a href="/docs/foundation.html#mediaQueries">Media Queries</a></li>
</ul>
</li>
<li><a href="/docs/form.html">Form</a>
<ul>
<li><a href="/docs/form.html#typography">Typography <sub>and the golden ratio</sub></a></li>
<li><a href="/docs/form.html#forms">Basic Forms</a></li>
<li><a href="/docs/form.html#multi_forms">Mutli Beside Forms</a></li>
<li><a href="/docs/form.html#custom_checkbox_radios">Custom Checkboxes and Radios</a></li>
<li><a href="/docs/form.html#append_prepend_icons">Prepend and Append Icons</a></li>
<li><a href="/docs/form.html#datepicker_fields">jQuery Datepicker Fields</a></li>
<li><a href="/docs/form.html#tables">Tables <sub>not for layout</sub></a></li>
</ul>
</li>
<li><a href="/docs/function.html">Function</a>
<ul>
<li><a href="/docs/function.html#navigation">Horizontal Nav <sub>with tertiary</sub></a></li>
<li><a href="/docs/function.html#horizcss">Horizontal Nav <sub>css</sub></a></li>
<li><a href="/docs/function.html#vertnav">Vertical Nav <sub>with tertiary</sub></a></li>
<li><a href="/docs/function.html#breadcrumbs">Breadcrumbs</a></li>
<li><a href="/docs/function.html#tabmagic">Tabs</a></li>
<li><a href="/docs/function.html#pagination">Pagination nav</a></li>
</ul>
</li>
<li><a href="/docs/features.html">Features</a>
<ul>
<li><a href="/docs/features.html#slides">Responsive Slide Shows</a></li>
<li><a href="/docs/features.html#helpers">Layout Helpers <sub>& shorthand classes</sub></a></li>
<li><a href="/docs/features.html#pears">Content Pea.rs</a></li>
<li><a href="/docs/features.html#icons">Webfont Icons <sub>by entypo</sub></a></li>
</ul>
</li>
<li><a href="javascript:;" class="modal_opener" amp-target="amp_overlay">Feedback</a></li>
</ul>