Skip to content

Instantly share code, notes, and snippets.

View wandbferreira's full-sized avatar

Wanderson Ferreira wandbferreira

  • Uberaba-MG - Brasil
View GitHub Profile
// My custom shortcuts Windows/Linux[   {      "key": "ctrl+2",      "command": "workbench.action.toggleSidebarVisibility"   },   {      "key": "shift+alt+f",      "command": "editor.action.formatDocument",      "when": "editorTextFocus && !editorReadonly"   },   {      "key": "ctrl+shift+i",      "command": "-editor.action.formatDocument",      "when": "editorTextFocus && !editorReadonly"   },   {      "key": "ctrl+shift+v",      "command": "-markdown.showPreview",      "when": "editorLangId == 'markdown'"   },   {      "key": "ctrl+shift+v",      "command": "-markdown.extension.togglePreview",      "when": "!terminalFocus"   },   {      "key": "ctrl+e",      "command": "-workbench.action.quickOpen"   },   {      "key": "ctrl+;",      "command": "extension.insertSemicolon",      "when": "editorTextFocus"   },   {      "key": "ctrl+/",      "command": "-extension.insertSemicolon",      "when": "editorTextFocus"   },   {      "key": "ctrl+shift+;",      "command": "extension.insertSemicolonWithNewLine",      "
@wandbferreira
wandbferreira / vertical-align.css
Last active July 12, 2017 13:06
Permite alinhamento Vertical
/* Div centralizada */
.classe {
position: relative;
top: 50%;
-webkit-transform: translateY(-50%);
-ms-transform: translateY(-50%);
transform: translateY(-50%);
}