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
namespace ConsoleApp | |
{ | |
class Program | |
{ | |
static void Main(string[] args) | |
{ | |
string[,] sections = new string[3, 3]; | |
sections[0, 0] = "top left"; |
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
$gutter: 10px; | |
@function px-to-pc($target, $context: $max-width) { | |
@return ($target / $context) * 100%; | |
} | |
@function per-line($items) { | |
$g-pct: px-to-pc($gutter) * 2; | |
$g-total: $items * $g-pct; | |
@return (100% / $items) - $g-total; |