Inspired by article How to Handle Multiple Git Accounts
Work with multiple SSH keys for authorization and commit signing.
ssh-keygen -t ed25519 -C "[email protected]"
Inspired by article How to Handle Multiple Git Accounts
Work with multiple SSH keys for authorization and commit signing.
ssh-keygen -t ed25519 -C "[email protected]"
{ | |
"files": { | |
"include": "src/**/*.s+(a|c)ss", | |
"ignore": [ | |
"**/vendor/*.scss" | |
] | |
}, | |
"rules": { | |
"extends-before-mixins": 1, | |
"quotes": [ |
Inspired by https://medium.com/@andrew_levine/theming-the-new-hipchat-4-beta-for-osx-64e4ba4a6749#.2nyhtsah8
This stylesheet is for the "Light" theme in HipChat. Go to
Settings > Appearance
to change the theme.
require "susy" | |
require "breakpoint" | |
css_dir = "." | |
sass_dir = "." |
<section> | |
<div class="container"> | |
<div class="col"> | |
<p>1 Nullam mattis nisl sit amet feugiat vulputate. Duis et tincidunt mi. Curabitur condimentum eget purus non porttitor. Maecenas sed lacus eu nisl vulputate tristique ut non dolor. In imperdiet felis et ex tincidunt lacinia. Proin sem massa, faucibus vel nulla eget, interdum scelerisque nibh.</p> | |
</div> | |
<div class="col"> | |
<p>2 Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc imperdiet est vitae lacus lacinia rhoncus. Ut imperdiet varius tellus, eu pharetra orci vulputate non.</p> | |
</div> | |
<hr class="splitter"> | |
<div class="col"> |
// Configurable variables | |
// ⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻⁻ | |
// Absolute height of body text, in pixels | |
$base-font-size: 16px !default; | |
// Absolute height of one line of type, in pixels | |
$base-line-height: 24px !default; | |
// The font unit to use when returning values in rhythm functions |
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
$my-default: "first" !default; | |
$my-default: "second" !default; | |
.output { | |
content: "#{$my-default}"; |
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.1) | |
// ---- | |
$font-base-size-px: 16px; | |
$bp-m-l: 481px; // Breakpoint medium | |
$bp-l-xl: 769px; // Breakpoint large | |
$font-size-breakpoints: $bp-m-l, $bp-l-xl; |