This file contains hidden or 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
Foundation Block Grids Extended | |
-------------------- | |
Describe your own breakpoints and names | |
Use them to create Block Grids from Foundation | |
The crazier your grid, the crazier the CSS |
This file contains hidden or 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
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
// Transform a value into rem | |
// Assuming baseline is set to 10px on :root/html | |
@function rem($value, $baseline: 10px) { | |
@if type-of($value) == list { | |
$result: (); |
This file contains hidden or 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> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Test</title> | |
<link rel="stylesheet" href="css/test.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<section class="primary-sidebar"></section> |
This file contains hidden or 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="container"> | |
<div class="sidebar-primary"></div> | |
<div class="sidebar-secondary"></div> | |
<div class="content-area"></div> | |
<div class="sidebar-tertiary"></div> | |
</div> |
This file contains hidden or 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="container"> | |
<div class="sidebar-primary"></div> | |
<div class="sidebar-secondary"></div> | |
<div class="content-area"></div> | |
<div class="sidebar-tertiary"></div> | |
</div> |
This file contains hidden or 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="container"> | |
<div class="sidebar-primary">Primary</div> | |
<div class="sidebar-secondary">Secondary</div> | |
<div class="content-area">Content</div> | |
<div class="sidebar-tertiary">Tertiary</div> | |
</div> |
This file contains hidden or 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="one"></div> | |
<div class="two"></div> | |
<div class="three"></div> | |
<div class="four"></div> | |
<div class="five"></div> |
This file contains hidden or 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="one"></div> | |
<div class="two"> | |
<div class="sub-one"></div> | |
<div class="sub-two"></div> | |
<div class="sub-three"></div> | |
<div class="sub-four"></div> | |
</div> | |
<div class="three"></div> | |
<div class="four"></div> |
This file contains hidden or 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="sidebar-primary"> | |
Sidebar Primary | |
</div> | |
<div class="content-area"> | |
Content | |
</div> | |
<div class="sidebar-secondary"> | |
Secondary | |
</div> |
This file contains hidden or 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="sidebar-primary"></div> | |
<div class="sidebar-secondary"></div> | |
<div class="content-area"></div> |
OlderNewer