create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| .hidden-visually { | |
| position: absolute; | |
| width: 1px; | |
| height: 1px; | |
| margin: -1px; | |
| padding: 0; | |
| border: 0; | |
| overflow: hidden; | |
| clip: rect(0 0 0 0); | |
| } |
| body:not(.user-is-tabbing) { | |
| button:focus, | |
| input:focus, | |
| select:focus, | |
| textarea:focus { | |
| outline: none; | |
| } | |
| } |
| { | |
| // Use IntelliSense to learn about possible attributes. | |
| // Hover to view descriptions of existing attributes. | |
| // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
| "version": "0.2.0", | |
| "configurations": [ | |
| { | |
| "type": "chrome", | |
| "request": "launch", | |
| "name": "Chrome Canary", |
| // ---- | |
| // libsass (v3.5.4) | |
| // ---- | |
| // A sass mixin to produce a specificity bump on a selector by chaining it | |
| @mixin specificity-bump($specificity: 1) { | |
| $selector: "#{&}"; | |
| @for $i from 1 through $specificity { | |
| $selector: $selector + "#{&}"; |
| { | |
| "processors": ["stylelint-processor-styled-components"], | |
| "extends": [ | |
| "stylelint-config-standard", | |
| "stylelint-config-styled-components" | |
| ], | |
| "plugins": ["stylelint-order", "stylelint-no-unsupported-browser-features"], | |
| "syntax": "scss", | |
| "rules": { |
| const { h, Component, render } = preact; /** @jsx h */ | |
| let q = []; | |
| function enqueue(fn, delay) { | |
| if (q.push(fn)==1) setTimeout(processQueue, delay); | |
| } | |
| function processQueue() { | |
| let p; | |
| while (p=q.pop()) p(); | |
| } |
| // --------------------------------------------- | |
| // Custom styles for TASKS (Taskpaper) | |
| // --------------------------------------------- | |
| // TODO: style notes | |
| // TODO: style bracket matcher | |
| // TODO: bottom-margin for headers | |
| @taskpaper-white: rgb(247, 247, 247); | |
| @taskpaper-black: rgba(0, 0, 0, 0.8); | |
| @taskpaper-gray: rgb(184, 184, 184); |
create different ssh key according the article Mac Set-Up Git
$ ssh-keygen -t rsa -C "[email protected]"
| * { | |
| @include box-sizing(border-box); | |
| } | |
| $pad: 20px; | |
| .grid { | |
| background: white; | |
| margin: 0 0 $pad 0; | |
| //Just for the demo | |
| body { | |
| background: #fafafa; | |
| font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; | |
| color: #333; | |
| } | |
| .row { | |
| display: flex; | |
| //min-height set for only the demo |