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
/// Function to get next map item | |
/// returns next map item or fallback value if map, key or next item does not exist | |
/// Github Repo: https://github.com/elcheio/sass-map-get-next-prev | |
/// Node Module: https://www.npmjs.com/package/sass-map-get-next-prev | |
/// | |
/// @author Simon Koch <[email protected]> | |
/// | |
/// Licensed under the MIT license. | |
/// | |
/// @access public |
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
(function () { | |
displayCssInfoFor(); | |
})(); | |
// A simple helper to display the CSS properties of an element at runtime. | |
// Use: | |
// By defualt, displays the color of the previous sibiling. | |
// <span data-properties-for></span> | |
// Specify element | |
// <span data-properties-for='{"element": "selector"}'></span> |
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> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" content="width=device-width" /> | |
<title>Foundation Semantic Grid Testing</title> | |
<link rel="stylesheet" href="styles.css"> | |
</head> | |
<body> |
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
// BuzzApp Modular Scale Table | |
// | |
// 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | |
// | | | | | | | | | | | | | | | | | | | |
// 16, 21, 26, 34, 42, 56, 68, 90, 110, 146, 177, 236, 287, 382, 464, 618, 752, 1000 | |
Note: These numbers are rounded from the original scale, giving us a cleaner set of numbers to work with. |