View Nested Grid CSS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
article { | |
@include column(8); | |
ul { | |
@include row(8); | |
li { | |
@include column(4, 8); | |
} | |
} | |
} |
View Wirefy Grid System
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<article> | |
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aenean laoreet suscipit sagittis. Mauris tristique bibendum laoreet. Cras eget lacus sodales mi ultrices dictum et eget odio. Cras venenatis nisi et magna volutpat, ut ullamcorper nisl tempor. Sed bibendum quam sit amet felis facilisis, sit amet feugiat nisi tincidunt. Ut cursus nisi magna, non sagittis neque cursus vitae. Sed ac augue ultricies, cursus dui auctor, porttitor elit. Praesent et neque sed orci auctor imperdiet. Donec cursus semper fermentum. Nullam aliquam viverra odio, at fermentum lorem vehicula vitae. Quisque pellentesque libero ut ligula congue, eu posuere felis pharetra. Interdum et malesuada fames ac ante ipsum primis in faucibus. Cras ut urna at risus dignissim porta. Maecenas eget pretium urna, eget pulvinar nulla.</p> | |
</article> | |
<aside> | |
<ul> | |
<li>List item 1</li> | |
<li>List item 2</li> | |
<li>List item 3</li> | |
<li>List item 4</li> | |
</ul> |
View wirefy-gallery
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="gallery row"> | |
<div class="four columns"> | |
... | |
</div> | |
<div class="four columns"> | |
... | |
</div> | |
<div class="four columns"> | |
... | |
</div> |
View wirefy-html-template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<!-- HTML5 Mobile Boilerplate --> | |
<!--[if IEMobile 7]><html class="no-js iem7"><![endif]--> | |
<!--[if (gt IEMobile 7)|!(IEMobile)]><!--><html class="no-js" lang="en"><!--<![endif]--> | |
<!-- HTML5 Boilerplate --> | |
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]--> | |
<!--[if (IE 7)&!(IEMobile)]><html class="no-js lt-ie9 lt-ie8" lang="en"><![endif]--> | |
<!--[if (IE 8)&!(IEMobile)]><html class="no-js lt-ie9" lang="en"><![endif]--> | |
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"><!--<![endif]--> |
View wirefy-file-structure
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Wirefy/ | |
├── index.html | |
├── sass/ | |
| ├── base.scss | |
| ├── layout.scss | |
├── css/ | |
| ├── base.css | |
| ├── layout.css | |
├── img/ | |
| ├── nav-icon.png |
View columns-and-margins
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Standard Grid Format --> | |
<section class="row"> | |
<div class="eight columns"> | |
... | |
</div> | |
<div class="eight columns"> | |
... | |
</div> | |
</section> |
View Wirefy Tables
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table class="CLASS_NAME"> | |
<thead> | |
<tr> | |
<th scope="col">Header</th> | |
<th>Header</th> | |
<th>Header</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr> |
View Wirefy Tabs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="tabs"> | |
<li><a class="active" href="#tab1">Tab 1</a></li> | |
<li><a href="#tab2">Tab 2</a></li> | |
<li><a href="#tab3">Tab 3</a></li> | |
</ul> | |
<ul class="tabs-content"> | |
<li class="active" id="tab1">Lorem ipsum dolor sit amet.</li> | |
<li id="tab2">Aliquam tincidunt mauris eu risus.</li> | |
<li id="tab3">Vestibulum auctor dapibus neque.</li> | |
</ul> |
View Wirefy Icons
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<i class="icon-user">Icon User</i> |
NewerOlder